home *** CD-ROM | disk | FTP | other *** search
/ Game Programming in C++ - Start to Finish / GameProgrammingS.iso / developer_install / ReplicaNetFreewareV5_4.exe / data1.cab / Program_Executable_Files / Example8 / Test1.h < prev   
Encoding:
C/C++ Source or Header  |  2005-10-30  |  665 b   |  31 lines

  1. /* START_LICENSE_HEADER
  2.  
  3. Copyright (C) 2000 Martin Piper, original design and program code
  4. Copyright (C) 2001-2005 Replica Software
  5.  
  6. This program file is copyright (C) Replica Software and can only be used under license.
  7. For more information visit: http://www.replicanet.com/
  8. Or email: info@replicanet.com
  9.  
  10. END_LICENSE_HEADER */
  11. #ifndef __TEST1_H__
  12. #define __TEST1_H__
  13.  
  14. #include "_RO_Test1.h"
  15.  
  16. class Test1 : _RO_DO_PUBLIC_RO(Test1)
  17. {
  18. public:
  19.     Test1();
  20.     virtual ~Test1();
  21.  
  22.     void RunTest(const int numSessionIDs,const int *sessionIDs);
  23.  
  24.     void APublicFunction(int ivalue,float fvalue);
  25.  
  26. private:
  27. _RO_DO_ALLOW_FRIEND_RO(Test1);
  28. };
  29.  
  30. #endif
  31.