12345678910111213141516171819202122232425262728293031323334353637383940 |
- #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;
- }
|