summaryrefslogtreecommitdiffhomepage
path: root/FTNoIR_Protocol_Base
diff options
context:
space:
mode:
Diffstat (limited to 'FTNoIR_Protocol_Base')
-rw-r--r--FTNoIR_Protocol_Base/ftnoir_protocol_base.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/FTNoIR_Protocol_Base/ftnoir_protocol_base.h b/FTNoIR_Protocol_Base/ftnoir_protocol_base.h
index 214aae7f..3f598d35 100644
--- a/FTNoIR_Protocol_Base/ftnoir_protocol_base.h
+++ b/FTNoIR_Protocol_Base/ftnoir_protocol_base.h
@@ -25,6 +25,7 @@
/*
Modifications (last one on top):
+ 20121115 - WVR: Added RegisterProtocol() and unRegisterProtocol() to Dialog Class
20110415 - WVR: Added overloaded operator - and -=
*/
@@ -81,6 +82,8 @@ struct IProtocolDialog
{
virtual ~IProtocolDialog() {}
virtual void Initialize(QWidget *parent) = 0;
+ virtual void registerProtocol(IProtocol *protocol) = 0;
+ virtual void unRegisterProtocol() = 0;
};
typedef IProtocolDialog* IProtocolDialogPtr;