SettingsHandler: Namespace code under the Common namespace

Adds another file in Common to the Common namespace.
This commit is contained in:
Lioncash
2018-05-12 13:39:35 -04:00
parent bf0ee9f702
commit 5677e5d74a
4 changed files with 11 additions and 5 deletions

View File

@ -22,6 +22,8 @@
#include "Common/SettingsHandler.h"
#include "Common/Timer.h"
namespace Common
{
SettingsHandler::SettingsHandler()
{
Reset();
@ -134,3 +136,4 @@ std::string SettingsHandler::GenerateSerialNumber()
stream << std::put_time(std::localtime(&t), "%j%H%M%S");
return stream.str();
}
} // namespace Common