home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-10-29 | 672 b | 30 lines | [TEXT/CWIE] |
- // GWorldAccessor.h, the GWorldAccessor class, to be used for direct access to
- // GWorld pixel-maps.
-
- // copyright © 1995, Macneil Shonle. All rights reserved.
-
- #ifndef __GWORLDACCESSOR__
- #define __GWORLDACCESSOR__
-
- #ifndef __BUFFERACCESSOR__
- #include <BufferAccessor.h>
- #endif
-
- #ifndef __QDOFFSCREEN__
- #include <QDOffscreen.h>
- #endif
-
- // class GWorldAccessor
- class GWorldAccessor : public BufferAccessor {
- public:
- GWorldAccessor(GWorldPtr) throw(xalloc);
- virtual ~GWorldAccessor();
-
- GWorldAccessor& operator=(const GWorldAccessor&) throw(xalloc);
- GWorldAccessor& operator=(GWorldPtr) throw(xalloc);
-
- private:
- void construct(GWorldPtr gw) throw(xalloc);
- };
-
- #endif