home *** CD-ROM | disk | FTP | other *** search
/ ...taking it to the Macs! / ...taking it to the Macs!.iso / Extras / ActiveX Mac SDK / ActiveX SDK / Sample Controls / PowerPlant View / CTestView.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-12-04  |  321 b   |  22 lines  |  [TEXT/CWIE]

  1. #ifndef __CTESTVIEW__
  2. #define __CTESTVIEW__
  3.  
  4. #include <LView.h>
  5.  
  6. class LCommander;
  7.  
  8. class CTestView : public LView
  9. {
  10. public:
  11.     enum {class_ID = 'tVIW'};
  12.     
  13.     static CTestView* CreateFromStream(LStream *inStream);
  14.     
  15.                 CTestView(LStream *inStream);
  16.         virtual ~CTestView() {}
  17.         
  18.         virtual void FinishCreateSelf();
  19. };
  20.  
  21.  
  22. #endif