Fix building issues.
This commit is contained in:
parent
4b24c78f0f
commit
37f9d3e200
|
@ -28,6 +28,7 @@
|
||||||
Config::Config()
|
Config::Config()
|
||||||
{
|
{
|
||||||
m_confsDoc = OTMLDocument::create();
|
m_confsDoc = OTMLDocument::create();
|
||||||
|
m_fileName = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Config::load(const std::string& file)
|
bool Config::load(const std::string& file)
|
||||||
|
|
|
@ -58,7 +58,7 @@ public:
|
||||||
ConfigPtr asConfig() { return static_self_cast<Config>(); }
|
ConfigPtr asConfig() { return static_self_cast<Config>(); }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
std::string m_fileName = "";
|
std::string m_fileName;
|
||||||
OTMLDocumentPtr m_confsDoc;
|
OTMLDocumentPtr m_confsDoc;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue