home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C ++ / Applications / Pict2Ascii 1.03 / Panes / CGWorldPane.h < prev    next >
Encoding:
Text File  |  1997-05-19  |  608 b   |  23 lines  |  [TEXT/CWIE]

  1. // =================================================================================
  2. //    CGWorldPane.h                             ©1997 BB's Team Inc. All rights reserved
  3. // =================================================================================
  4.  
  5. #pragma once
  6.  
  7. #include <LPane.h>
  8.  
  9. class CGWorldPane : public LPane {
  10. public:
  11.     // Step 3 declare class_ID enum
  12.     enum { class_ID = 'GwPn' };
  13.  
  14.     static CGWorldPane *CreateGWorldPaneStream( LStream *inStream );
  15.                         CGWorldPane( LStream *inStream );
  16.     virtual                ~CGWorldPane();
  17.     virtual void        SetGWorld (GWorldPtr);
  18.  
  19. protected:
  20.     GWorldPtr            mGW;
  21.     virtual void        DrawSelf();
  22. };
  23.