home *** CD-ROM | disk | FTP | other *** search
/ ...taking it to the Macs! / ...taking it to the Macs!.iso / Extras / ActiveX Mac SDK / ActiveX SDK / Containers / ActiveXApp / CActiveXPeriodical.h < prev    next >
Encoding:
Text File  |  1996-11-26  |  761 b   |  33 lines  |  [TEXT/CWIE]

  1. // ===========================================================================
  2. //    CActiveXPeriodical.h     ©1996 Microsoft Corporation. All rights reserved.
  3. // ===========================================================================
  4.  
  5. #ifndef _H_CActiveXPeriodical
  6. #define _H_CActiveXPeriodical
  7. #pragma once
  8.  
  9. #include <LPeriodical.h>
  10.  
  11. class CActiveXPeriodical :
  12.         public    LPeriodical
  13. {
  14. public:
  15.     // *** Constructors & Destructors ***
  16.     CActiveXPeriodical(void);
  17.  
  18.     // *** public methods ***
  19.     static void        UpdatePeriodical(void);
  20.  
  21.     // *** LPeriodical methods ***
  22.     virtual void    SpendTime(const EventRecord &inMacEvent);
  23.  
  24. private:
  25.     // *** private data ***
  26.  
  27.     static CActiveXPeriodical*    sActiveXPeriodical;
  28.  
  29.     Boolean8                    mIsIdling;
  30.     Boolean8                    mIsRepeating;
  31. };
  32.  
  33. #endif