Basic changes to support multiple charsets in the future

This commit is contained in:
Eduardo Bart
2012-08-17 19:44:57 -03:00
parent affe641a1f
commit fdea7f3d66
23 changed files with 29 additions and 245 deletions

View File

@@ -53,6 +53,7 @@ Application::Application()
m_appName = "application";
m_appCompactName = "app";
m_appVersion = "none";
m_charset = "cp1252";
m_stopping = false;
}

View File

@@ -52,6 +52,7 @@ public:
const std::string& getCompactName() { return m_appCompactName; }
const std::string& getVersion() { return m_appVersion; }
std::string getCharset() { return m_charset; }
std::string getBuildCompiler() { return BUILD_COMPILER; }
std::string getBuildDate();
std::string getBuildRevision() { return BUILD_REVISION; }
@@ -64,6 +65,7 @@ public:
protected:
void registerLuaFunctions();
std::string m_charset;
std::string m_appName;
std::string m_appCompactName;
std::string m_appVersion;