home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-10-20 | 599 b | 22 lines | [TEXT/CWIE] |
- // SecureMacPort.h, the SecureMacPort abstract class, useful for generating windows
- // and GWorlds for those who do not use a framework that makes these for them.
-
- // copyright © 1995, Macneil Shonle. All rights reserved.
-
- #ifndef __SECUREMACPORT__
- #define __SECUREMACPORT__
-
- // class SecureMacPort
- class SecureMacPort {
- public:
- virtual ~SecureMacPort() {}
-
- virtual Rect& portRect() const = 0;
- virtual BitMapPtr bitMap() const = 0;
- virtual short width() const = 0;
- virtual short height() const = 0;
- virtual CGrafPtr getMacPort() const = 0;
- virtual GDHandle getMacGD() const = 0;
- };
-
- #endif