blob: c2409842addd26aea784c3c2fc7da7c606849dcc [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át2eaceb82018-10-08 19:56:30 +020010ParserContext::ParserContext(const Schema& schema, const schemaPath_& curDir)
Václav Kubernát48fc3832018-05-28 14:21:22 +020011 : m_schema(schema)
Václav Kubernát5c75b252018-10-10 18:33:47 +020012 , m_curPath(curDir)
13 , m_curPathOrig(curDir)
Václav Kubernát195eeea2018-05-18 13:52:36 +020014{
Václav Kubernát744f57f2018-06-29 22:46:26 +020015 if (!m_curPath.m_nodes.empty() && m_curPath.m_nodes.at(0).m_prefix)
16 m_topLevelModulePresent = true;
Václav Kubernát195eeea2018-05-18 13:52:36 +020017}