blob: 4d6cf994ee2bc1f5fed2aedcf3b1a39344aefe4c [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 {
Václav Kubernát2a9e1792018-05-28 12:53:48 +020011 ParserContext(const CTree& tree, const std::string curDir);
Václav Kubernát195eeea2018-05-18 13:52:36 +020012 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};