aboutsummaryrefslogtreecommitdiffstats
path: root/yt/yt/core/misc/pattern_formatter.h
blob: 2fd44753874c3d01934e9ce4a54dac7812d8e287 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#pragma once

#include "common.h"

namespace NYT {

////////////////////////////////////////////////////////////////////////////////

class TPatternFormatter
    : private TNonCopyable
{
public:
    void AddProperty(const TString& name, const TString& value);
    TString Format(const TString& pattern);

private:
    using TPropertyMap = THashMap<TString, TString>;
    TPropertyMap PropertyMap;

};

////////////////////////////////////////////////////////////////////////////////

} // namespace NYT