]> Shamusworld >> Repos - architektonas/blobdiff - src/base/system.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / base / system.h
index be9c72952d18f947d4577f73621d1eb675ab8218..8933f28dc325c82e960dafe885a857277d38acb5 100644 (file)
@@ -5,7 +5,7 @@
 #include <QtCore>
 #include "debug.h"
 
-#define RS_SYSTEM RS_System::instance()
+#define SYSTEM System::instance()
 
 /**
  * Class for some system methods such as file system operations.
  * @author James Hammons
  * @author Andrew Mustun
  */
-class RS_System
+class System
 {
        protected:
-               RS_System();
+               System();
 
        public:
-               static RS_System * instance();
+               static System * instance();
                void init(const QString & appName, const QString & appVersion,
                        const QString & appDirName, const QString & appDir = "");
                void initLanguageList();
@@ -53,7 +53,7 @@ class RS_System
                static QString localeToISO(const QString & locale);
 
        protected:
-               static RS_System * uniqueInstance;
+               static System * uniqueInstance;
 
                QString appName;
                QString appVersion;