MNE-CPP  beta 1.0
pluginconnector.cpp
Go to the documentation of this file.
1 //=============================================================================================================
36 //*************************************************************************************************************
37 //=============================================================================================================
38 // INCLUDES
39 //=============================================================================================================
40 
41 #include "pluginconnector.h"
42 #include "../Interfaces/IPlugin.h"
43 
44 
45 //*************************************************************************************************************
46 //=============================================================================================================
47 // USED NAMESPACES
48 //=============================================================================================================
49 
50 using namespace MNEX;
51 
52 
53 //*************************************************************************************************************
54 //=============================================================================================================
55 // DEFINE MEMBER METHODS
56 //=============================================================================================================
57 
58 PluginConnector::PluginConnector(IPlugin *parent, const QString &name, const QString &descr)
59 : QObject(parent)
60 , m_pPlugin(parent)
61 , m_sName(name)
62 , m_sDescription(descr)
63 {
64 }
The IPlugin class is the base interface class of all plugins.
Definition: IPlugin.h:92
PluginConnector(IPlugin *parent, const QString &name, const QString &descr)
Definition: arrow.h:75
Contains the declaration of the PluginConnector class.