diff options
author | Wim Vriend <facetracknoir@gmail.com> | 2010-12-24 18:58:17 +0000 |
---|---|---|
committer | Wim Vriend <facetracknoir@gmail.com> | 2010-12-24 18:58:17 +0000 |
commit | e007864f430012ac03455142b3910760df03987d (patch) | |
tree | ed1d358f61ffbd19788670da593e17a20b2a276e /FaceTrackNoIR/FTIRServer.h | |
parent | 53231950ec75f67a931d47b78987a6bcac9d2eb0 (diff) |
Removed QThread reference of protocol server-code.
Have still to adapt some of them though...
git-svn-id: svn+ssh://svn.code.sf.net/p/facetracknoir/code@32 19e81ba0-9b1a-49c3-bd6c-561e1906d5fb
Diffstat (limited to 'FaceTrackNoIR/FTIRServer.h')
-rw-r--r-- | FaceTrackNoIR/FTIRServer.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/FaceTrackNoIR/FTIRServer.h b/FaceTrackNoIR/FTIRServer.h index 98273bc5..c27a1ab5 100644 --- a/FaceTrackNoIR/FTIRServer.h +++ b/FaceTrackNoIR/FTIRServer.h @@ -56,13 +56,18 @@ public: // protected member methods
protected:
- void run();
+// void run();
bool checkServerInstallationOK( HANDLE handle );
+ void sendHeadposeToGame();
private:
bool FTIRCreateMapping(HANDLE handle);
void FTIRDestroyMapping();
+ importSetPosition setposition; // Function inside NPClient.dll
+ importTIRViewsStart viewsStart; // Functions inside TIRViews.dll
+ importTIRViewsStop viewsStop;
+
HANDLE hFTIRMemMap;
FTIRMemMap *pMemData;
HANDLE hFTIRMutex;
|