Project

General

Profile

GlovePrerequistes.h
1 //###################################################################################
2 //# Glove Calibration #
3 //# Used To Handle a 5DT Glove #
4 //# Author : #
5 //# NGUYEN Thanh Tu #
6 //###################################################################################
7 
8 #ifndef GLOVE_PREREQUISTES
9 #define GLOVE_PREREQUISTES
10 
11 // Include Standard Libraries
12 #include <stdio.h>
13 #include <string>
14 #include <time.h>
15 #ifdef WIN32
16 #include <windows.h> // for Sleep
17 #else
18 #include <unistd.h> // for usleep
19 #endif
20 
21 // Include Glove SDK Library
22 #include "fglove.h"
23 
24 // Classes definition
25 class GloveCalibration;
26 class GloveManager;
27 class GloveObject;
28 
29 #endif