diff --git a/CMakeLists.txt b/CMakeLists.txt index 4ef830ba2..59ea95a55 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -170,6 +170,7 @@ set(APP_SOURCES src/core/settings.cpp src/core/systemfactory.cpp src/core/datetime.cpp + src/core/localization.cpp # Basic application sources. src/main.cpp diff --git a/src/core/localization.cpp b/src/core/localization.cpp new file mode 100644 index 000000000..b33d609c6 --- /dev/null +++ b/src/core/localization.cpp @@ -0,0 +1,6 @@ +#include "localization.h" + + +Localization::Localization() +{ +} diff --git a/src/core/localization.h b/src/core/localization.h new file mode 100644 index 000000000..f7f909731 --- /dev/null +++ b/src/core/localization.h @@ -0,0 +1,12 @@ +#ifndef LOCALIZATION_H +#define LOCALIZATION_H + + +class Localization +{ + // TODO: Finish implementation of this class. + private: + Localization(); +}; + +#endif // LOCALIZATION_H