pip_cmg namespace fix

This commit is contained in:
2022-06-24 14:46:55 +03:00
parent 831f202536
commit 33eefd7453
2 changed files with 44 additions and 23 deletions

View File

@@ -1,6 +1,9 @@
/*! \file picodeparser.h
* \brief C++ code parser
*/
* \ingroup Code
* \~\brief
* \~english C++ code parser
* \~russian Разбор C++ кода
*/
/*
PIP - Platform Independent Primitives
C++ code parser
@@ -148,7 +151,7 @@ private:
bool parseFileContent(PIString & fc, bool main);
bool parseDirective(PIString d);
Entity * parseClassDeclaration(const PIString & fc);
PIString parseClass(Entity * parent, PIString & fc);
void parseClass(Entity * parent, PIString & fc, bool is_namespace);
MetaMap parseMeta(PIString & fc);
bool parseEnum(Entity * parent, const PIString & name, PIString fc, const MetaMap & meta);
Typedef parseTypedef(PIString fc);