Updated ghoul version; more code cleanup

This commit is contained in:
Alexander Bock
2014-05-10 15:17:10 +02:00
parent f14daa0999
commit 9bcb848e60
2 changed files with 3 additions and 6 deletions

View File

@@ -55,13 +55,10 @@ public:
private:
FactoryManager();
/// Not implemented on purpose, using this should result in an error
FactoryManager(const FactoryManager& c);
/// Not implemented on purpose, using this should result in an error
~FactoryManager();
FactoryManager(const FactoryManager& c) = delete;
static FactoryManager* _manager; ///<Singleton member
std::vector<ghoul::TemplateFactoryBase*> _factories;