diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2013-09-13 13:58:59 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2013-09-13 13:58:59 +0200 |
commit | 877ae430dc80280b00ef508f790db6cf0a9d862b (patch) | |
tree | 2531973cda34916f99f7cacca924943be08d2f32 /ftnoir_protocol_base | |
parent | d31c12fa4bc85897da328287030cb10a6b0db5af (diff) |
Cleanup unused functions
Diffstat (limited to 'ftnoir_protocol_base')
-rw-r--r-- | ftnoir_protocol_base/ftnoir_protocol_base.h | 16 |
1 files changed, 0 insertions, 16 deletions
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() {}
|