9 #include "helper/singleton.h" 19 Q_CLASSINFO(
"guiModule",
"true")
20 Q_CLASSINFO(
"dependsOn",
"GuiManager")
21 Q_CLASSINFO(
"dependsOn",
"PluginManager")
35 const QList<Interface_Livedoc_Provider*>& get_providers()
const;
36 QString get_doc(QUrl doc);
39 void navigate(QUrl doc);
42 void toggle(
bool visible);
48 QList<Interface_Livedoc_Provider*> lis_providers;
virtual bool postInit()=0
postInit will be called after all components and singletons have been constructed/initialized ...
The AbstractSingleton class defines functions that every singleton must implement Every Singleton mus...
Definition: singleton.h:12
Definition: interface_livedoc_provider.h:11
virtual bool preDestroy()=0
preDestroy will be called before any of the components and singletons will be destructed/deinitailize...
The Singleton Template figures as baseclass for all Singletons. It provides a instance() functions wh...
Definition: singleton.h:54