From dacd393fefeabafd1306533dd6c5a56e0ab347cc Mon Sep 17 00:00:00 2001 From: Florian Jung Date: Sun, 27 Feb 2011 18:48:35 +0100 Subject: Initial commit --- TPluginParentLight.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 TPluginParentLight.h (limited to 'TPluginParentLight.h') diff --git a/TPluginParentLight.h b/TPluginParentLight.h new file mode 100644 index 0000000..0aab45d --- /dev/null +++ b/TPluginParentLight.h @@ -0,0 +1,26 @@ +#ifndef _TPLUGINPARENTLIGHT_H_ +#define _TPLUGINPARENTLIGHT_H_ + +#include + +using namespace std; + +#include "mytypes.h" +#include "myfuncs.h" + +#include "TConnectionInterface.h" + +#include "TPlugin.h" +#include "TUserList.h" + +class TPluginParentLight +{ + public: + virtual void say (string what)=0; + TConnectionInterface* get_parent(){return parent;} + virtual string get_name()=0; //channame, bei sessions ownername + virtual int get_type()=0; + protected: + TConnectionInterface* parent; +}; +#endif -- cgit v1.2.1