home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1998 / MacHack 1998.toast / Sessions / Completions / Completions Source / Timing / Microsecs.h < prev    next >
Encoding:
Text File  |  1998-06-17  |  280 b   |  24 lines  |  [TEXT/CWIE]

  1. // Microsecs.h
  2.  
  3. #ifndef Microsecs_h
  4. #define Microsecs_h
  5.  
  6. #ifndef Integers_h
  7. #include "Integers.h"
  8. #endif
  9.  
  10. class Microsecs
  11.   {
  12.     private:
  13.         int32 count;
  14.     
  15.     public:
  16.         Microsecs( int32 theCount )
  17.           : count( theCount )
  18.           {}
  19.         
  20.         int32 Count() const        { return count; }
  21.   };
  22.  
  23. #endif
  24.