MNE-CPP  beta 1.0
pluginoutputconnector.cpp
Go to the documentation of this file.
1 //=============================================================================================================
36 //*************************************************************************************************************
37 //=============================================================================================================
38 // INCLUDES
39 //=============================================================================================================
40 
41 #include "pluginoutputconnector.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 PluginOutputConnector::PluginOutputConnector(IPlugin *parent, const QString &name, const QString &descr)
59 : PluginConnector(parent, name, descr)
60 {
61 }
62 
63 
64 //*************************************************************************************************************
65 
67 {
68  return false;
69 }
70 
71 
72 //*************************************************************************************************************
73 
75 {
76  return true;
77 }
78 
PluginOutputConnector(IPlugin *parent, const QString &name, const QString &descr)
The IPlugin class is the base interface class of all plugins.
Definition: IPlugin.h:92
Contains the declaration of the PluginOutputConnector class.
Definition: arrow.h:75
virtual bool isInputConnector() const
virtual bool isOutputConnector() const
The PluginConnector class provides the base to connect plug-in data.