diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2013-06-06 08:11:28 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2013-06-06 08:11:28 +0200 |
commit | f7aa064edc20eafbc738271c5b53238fa4ad8361 (patch) | |
tree | a1c6c107fb82a0ba647f6f72fb24691a1e8f4bc7 /ftnoir_protocol_ft | |
parent | 2b83e2db9552d3f0abd3c4bb5543f72a96e4e4bf (diff) |
Remove dead code
Diffstat (limited to 'ftnoir_protocol_ft')
-rw-r--r-- | ftnoir_protocol_ft/ftnoir_protocol_ft.cpp | 5 | ||||
-rw-r--r-- | ftnoir_protocol_ft/ftnoir_protocol_ft.h | 8 |
2 files changed, 1 insertions, 12 deletions
diff --git a/ftnoir_protocol_ft/ftnoir_protocol_ft.cpp b/ftnoir_protocol_ft/ftnoir_protocol_ft.cpp index 257ed723..3108f0d7 100644 --- a/ftnoir_protocol_ft/ftnoir_protocol_ft.cpp +++ b/ftnoir_protocol_ft/ftnoir_protocol_ft.cpp @@ -79,11 +79,6 @@ FTNoIR_Protocol::~FTNoIR_Protocol() }
}
-void FTNoIR_Protocol::Initialize()
-{
- return;
-}
-
//
// Read the game-data from CSV
//
diff --git a/ftnoir_protocol_ft/ftnoir_protocol_ft.h b/ftnoir_protocol_ft/ftnoir_protocol_ft.h index 2cc03ca6..2988de21 100644 --- a/ftnoir_protocol_ft/ftnoir_protocol_ft.h +++ b/ftnoir_protocol_ft/ftnoir_protocol_ft.h @@ -54,10 +54,6 @@ class FTNoIR_Protocol : public IProtocol public:
FTNoIR_Protocol();
~FTNoIR_Protocol();
-
- void Release();
- void Initialize();
-
bool checkServerInstallationOK( );
void sendHeadposeToGame( double *headpose, double *rawheadpose );
QString getGameName() {
@@ -101,9 +97,7 @@ public: explicit FTControls();
virtual ~FTControls();
- void showEvent ( QShowEvent * event );
-
- void Release(); // Member functions which are accessible from outside the DLL
+ void showEvent ( QShowEvent * event );
void Initialize(QWidget *parent);
void registerProtocol(IProtocol *protocol) {
theProtocol = (FTNoIR_Protocol *) protocol; // Accept the pointer to the Protocol
|