home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 March / macformat-022.iso / Shareware City / Developers / NeoIntroTCL3.0 folder / TCL / NeoBench / Includes / CImagePICT.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-23  |  475 b   |  26 lines  |  [TEXT/KAHL]

  1. /****
  2.  * CImagePICT.h
  3.  *
  4.  *    Persistent PICT image class.
  5.  *
  6.  ****/
  7.  
  8. #pragma once            /* Include this file only once */
  9. #include "CImage.h"
  10.  
  11. #define kImagePICTID        10
  12.  
  13. class CImagePICT : public CImage {
  14. public:
  15.                         /** Instance Methods **/
  16.     static CNeoPersist *New(void);
  17.     virtual long        doUntilSubclass(NeoTestFunc1 aFunc, long aParam);
  18.  
  19.                         /** Object List Methods **/
  20.     virtual NeoID        getClassID(void);
  21.  
  22.                         /** Rendering Methods **/
  23.     virtual void        draw(Rect *aRect);
  24. };
  25.  
  26.