46   m_initialized = 
false;
 
   54   : m_pluginInfo(pInfo),
 
The basic information about a plugin. 
 
virtual void shutdown()
Do nothing! Just set plugin as stopped. 
 
virtual void startup()
Do nothing! Just set plugin as started. 
 
bool isStarted() const 
It tells if the plugin was started or not. 
 
PluginInfo m_pluginInfo
Information about the plugin. 
 
Plugin(const PluginInfo &pInfo)
It initializes a new plugin. 
 
A base class for plugin types. 
 
const PluginInfo & getInfo() const 
It return the information associated to the plugin. 
 
virtual ~Plugin()
Virtual destructor.