home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-10-16 | 666 b | 21 lines | [TEXT/KAHL] |
- //=============================================================================
- // Little Smalltalk, version 3
- // Written by Tim Budd, Oregon State University, July 1988
- //
- // Symantec Think Class Library interface code ©Julian Barkway, August 1994
- //
- // CGraphicsPane.h
- // ---------------
- // This class implements a graphics pane as a sub-class of CPicture.
- //=============================================================================
-
- #ifndef _H_CGraphicsPane
- #define _H_CGraphicsPane
-
- #include "CPicture.h"
-
- struct CGraphicsPane : CPicture {
- void IGraphicsPane (CView *encl, CBureaucrat *super,
- SizingOption hSizing, SizingOption vSizing);
- };
- #endif