Removed C++17 nested namespace definitions. Should build on trusty again.

This commit is contained in:
Jim Evins
2017-11-24 15:49:26 -05:00
parent 4821e103bc
commit c9f2b91daf
129 changed files with 18995 additions and 18592 deletions
+13 -10
View File
@@ -26,21 +26,24 @@
#include <QString>
namespace glabels::model
namespace glabels
{
class XmlCategoryParser
namespace model
{
public:
XmlCategoryParser() {}
bool readFile( const QString &fileName );
class XmlCategoryParser
{
public:
XmlCategoryParser() {}
private:
void parseRootNode( const QDomElement &node );
void parseCategoryNode( const QDomElement &node );
};
bool readFile( const QString &fileName );
private:
void parseRootNode( const QDomElement &node );
void parseCategoryNode( const QDomElement &node );
};
}
}