blob: 64b293a7d48c208e627107d3ee85a0c6646c079c [file] [log] [blame]
Václav Kubernát195eeea2018-05-18 13:52:36 +02001/*
2 * Copyright (C) 2018 CESNET, https://photonics.cesnet.cz/
3 * Copyright (C) 2018 FIT CVUT, https://fit.cvut.cz/
4 *
5 * Written by Václav Kubernát <kubervac@fit.cvut.cz>
6 *
7*/
8
9#include "CTree.hpp"
10struct ParserContext {
11 ParserContext(const CTree& tree);
12 const CTree& m_tree;
13 std::string m_curPath;
14 std::string m_errorMsg;
15 std::string m_tmpListName;
16 std::set<std::string> m_tmpListKeys;
17 bool m_errorHandled = false;
18};