home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 June / PCFJune.iso / Xenon / XenonSource.exe / gamesystem / includes / gs_object.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-04-30  |  774 b   |  44 lines

  1. //-------------------------------------------------------------
  2. //
  3. // Class:    gsCObject
  4. //
  5. // Author:    John M Phillips
  6. //
  7. // Started:    12/03/00
  8. //
  9. // Base:    None
  10. //
  11. // Derived:    All Classes
  12. //
  13. //-------------------------------------------------------------
  14.  
  15. #ifndef _INCLUDE_GS_OBJECT_H
  16. #define _INCLUDE_GS_OBJECT_H
  17.  
  18. //-------------------------------------------------------------
  19.  
  20. class gsCObject
  21. {
  22.     private:
  23.     public:
  24.         gsCObject();
  25.         virtual ~gsCObject();
  26. };
  27.  
  28. //-------------------------------------------------------------
  29.  
  30. inline gsCObject::gsCObject()
  31. {
  32. }
  33.  
  34. //-------------------------------------------------------------
  35.  
  36. inline gsCObject::~gsCObject()
  37. {
  38. }
  39.  
  40. //-------------------------------------------------------------
  41.  
  42. #endif
  43.  
  44.