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 >
Wrap
C/C++ Source or Header
|
1992-04-26
|
765b
|
31 lines
/////////////////////////////////////////////////////////////////////////////
//
// GEM Resource
//
// A GEMresource is the declaration that all future defined objects
// will be as defined in a given resource file (.RSC).
//
// Due to limitations in GEM, this object is a globally acting one,
// rather than being an object containing objects to which we create
// references, as it more logically is.
//
// This file is Copyright 1992 by Warwick W. Allison,
// and is freely distributable providing no charge is made.
//
/////////////////////////////////////////////////////////////////////////////
#ifndef GEMR_h
#define GEMR_h
#include <gemfast.h>
class GEMrsc
{
public:
GEMrsc(char *filename);
~GEMrsc();
};
#endif