blob: 5766c2fd95d226ec81aa311cc587d5aa64fe4510 [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 "parser_context.hpp"
Václav Kubernát2a9e1792018-05-28 12:53:48 +020010ParserContext::ParserContext(const CTree& tree, const std::string curDir)
Václav Kubernát195eeea2018-05-18 13:52:36 +020011 : m_tree(tree)
12{
Václav Kubernát2a9e1792018-05-28 12:53:48 +020013 m_curPath = curDir;
Václav Kubernát195eeea2018-05-18 13:52:36 +020014}