moved stuff from chatterino to appbase

This commit is contained in:
fourtf
2018-11-23 17:51:55 +01:00
parent 41a07a43af
commit a9ca33f431
16 changed files with 3 additions and 844 deletions
-26
View File
@@ -1,26 +0,0 @@
#pragma once
#include <boost/noncopyable.hpp>
namespace chatterino {
class Settings;
class Paths;
class Singleton : boost::noncopyable
{
public:
virtual ~Singleton() = default;
virtual void initialize(Settings &settings, Paths &paths)
{
(void)(settings);
(void)(paths);
}
virtual void save()
{
}
};
} // namespace chatterino