home *** CD-ROM | disk | FTP | other *** search
/ Computer Club Elmshorn Atari PD / CCE_PD.iso / pc / 0400 / CCE_0423.ZIP / CCE_0423.PD / GEM.ZOO / gemr.h < prev    next >
C/C++ Source or Header  |  1992-04-26  |  765b  |  31 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. //  GEM Resource
  4. //
  5. //  A GEMresource is the declaration that all future defined objects
  6. //  will be as defined in a given resource file (.RSC).
  7. //
  8. //  Due to limitations in GEM, this object is a globally acting one,
  9. //  rather than being an object containing objects to which we create
  10. //  references, as it more logically is.
  11. //
  12. //  This file is Copyright 1992 by Warwick W. Allison,
  13. //  and is freely distributable providing no charge is made.
  14. //
  15. /////////////////////////////////////////////////////////////////////////////
  16.  
  17. #ifndef GEMR_h
  18. #define GEMR_h
  19.  
  20. #include <gemfast.h>
  21.  
  22.  
  23. class GEMrsc
  24. {
  25. public:
  26.     GEMrsc(char *filename);
  27.     ~GEMrsc();
  28. };
  29.  
  30. #endif
  31.