Appendix N - Ttt_Vision.H
1:  #ifndef __TTT_VISION_WAPPER__
2:  #define __TTT_VISION_WAPPER__
3:  
4:  #include "sie_protocol.h"
5:  #include "device_type_id_number.h"
6:  #include "ttt_vision_protocol.h"
7:  #include "shelley_sockets.h"
8:  
9:  class Ttt_Vision
10:  {
11:  private:
12:    int sock;
13:    int32 id;
14:    int width, height;
15:  
16:  public:
17:    Ttt_Vision (int sock_number, int32 device_id, int frame_height,
18:  	      int frame_width);
19:    ~Ttt_Vision () {};
20:  
21:    void find_ttt(unsigned char* data, unsigned char game[3][3]);
22:  };
23:  
24:  #endif
25: