Václav Kubernát | 195eeea | 2018-05-18 13:52:36 +0200 | [diff] [blame] | 1 | /* |
| 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 | |
Václav Kubernát | 48fc383 | 2018-05-28 14:21:22 +0200 | [diff] [blame^] | 9 | #include "schema.hpp" |
Václav Kubernát | 195eeea | 2018-05-18 13:52:36 +0200 | [diff] [blame] | 10 | struct ParserContext { |
Václav Kubernát | 48fc383 | 2018-05-28 14:21:22 +0200 | [diff] [blame^] | 11 | ParserContext(const Schema& schema, const path_ curDir); |
| 12 | const Schema& m_schema; |
Václav Kubernát | 814fa41 | 2018-05-25 19:47:18 +0200 | [diff] [blame] | 13 | path_ m_curPath; |
Václav Kubernát | 195eeea | 2018-05-18 13:52:36 +0200 | [diff] [blame] | 14 | std::string m_errorMsg; |
| 15 | std::string m_tmpListName; |
| 16 | std::set<std::string> m_tmpListKeys; |
| 17 | bool m_errorHandled = false; |
| 18 | }; |