CPLight

Superclass: CPObject

Other Subclasses:

CPLight


#ifdef USE_SH_POOLS
 public:
  // Overload new/delete to use a SmartHeap pool
  void *operator new(size_t size) { return MemAllocPtr(gCockMemPool,size,FALSE); };
  void operator delete(void *mem) { if (mem) MemFreePtr(mem); };
#endif
public:

 //====================================================//
 // State Information
 //====================================================//

 int  mStates;
 int  mState;

 //====================================================//
 // Source Locations for Template Surface
 //====================================================//

 RECT  *mpSrcRect;

 //====================================================//
 // Runtime Member Functions
 //====================================================//

 virtual void Exec(SimBaseClass*);
 virtual void DisplayBlit(void);

 //====================================================//
 // Constructors and Destructors
 //====================================================//

 CPLight(ObjectInitStr*, LightButtonInitStr*);
 virtual ~CPLight();