From 877ae430dc80280b00ef508f790db6cf0a9d862b Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Fri, 13 Sep 2013 13:58:59 +0200 Subject: Cleanup unused functions --- ftnoir_protocol_base/ftnoir_protocol_base.h | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'ftnoir_protocol_base') diff --git a/ftnoir_protocol_base/ftnoir_protocol_base.h b/ftnoir_protocol_base/ftnoir_protocol_base.h index d6e4cb58..8533363d 100644 --- a/ftnoir_protocol_base/ftnoir_protocol_base.h +++ b/ftnoir_protocol_base/ftnoir_protocol_base.h @@ -62,22 +62,6 @@ struct IProtocol virtual QString getGameName() = 0; }; -//////////////////////////////////////////////////////////////////////////////// -// COM-Like abstract interface. -// This interface doesn't require __declspec(dllexport/dllimport) specifier. -// Method calls are dispatched via virtual table. -// Any C++ compiler can use it. -// Instances are obtained via factory function. -struct IProtocolDll -{ - virtual ~IProtocolDll() {} - - virtual void getFullName(QString *strToBeFilled) = 0; - virtual void getShortName(QString *strToBeFilled) = 0; - virtual void getDescription(QString *strToBeFilled) = 0; - virtual void getIcon(QIcon *icon) = 0; -}; - struct IProtocolDialog { virtual ~IProtocolDialog() {} -- cgit v1.2.3