Fixes #538 multiple window frames on windows

This commit is contained in:
fourtf
2018-07-03 12:07:57 +02:00
parent 978931bcfc
commit eb809d1572
4 changed files with 39 additions and 21 deletions
+23
View File
@@ -0,0 +1,23 @@
#pragma once
#include <boost/noncopyable.hpp>
namespace chatterino {
class Application;
class Singleton : boost::noncopyable
{
virtual ~Singleton() = default;
virtual void initialize(Application &application)
{
(void)(application);
}
virtual void finalize()
{
}
};
} // namespace chatterino