aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/json/easy_parse/json_easy_parser_impl.h
blob: ec55d838b32fb48cbe17d17cf99b3d3fa4b807e5 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#pragma once

#include <util/generic/string.h>

namespace NJson {
    namespace NImpl {
        enum EType {
            ARRAY,
            MAP,
            MAP_KEY
        };
    }
    template <class TStringType>
    struct TPathElemImpl {
        NImpl::EType Type;
        TStringType Key;
        int ArrayCounter;

        TPathElemImpl(NImpl::EType type)
            : Type(type)
            , ArrayCounter()
        {
        }

        TPathElemImpl(const TStringType& key)
            : Type(NImpl::MAP_KEY)
            , Key(key)
            , ArrayCounter()
        {
        }

        TPathElemImpl(int arrayCounter)
            : Type(NImpl::ARRAY)
            , ArrayCounter(arrayCounter)
        {
        }
    };

    typedef TPathElemImpl<TString> TPathElem;
}