rename some of the classes
CParser is now just parser. CTree is now Schema. The namespace "schema" is
now called "yang".
Change-Id: Ief9c22fb6a7633b80010d355f9582e313e818d45
diff --git a/src/parser_context.hpp b/src/parser_context.hpp
index 2c90120..99c1a63 100644
--- a/src/parser_context.hpp
+++ b/src/parser_context.hpp
@@ -6,10 +6,10 @@
*
*/
-#include "CTree.hpp"
+#include "schema.hpp"
struct ParserContext {
- ParserContext(const CTree& tree, const path_ curDir);
- const CTree& m_tree;
+ ParserContext(const Schema& schema, const path_ curDir);
+ const Schema& m_schema;
path_ m_curPath;
std::string m_errorMsg;
std::string m_tmpListName;