home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / Files / Util / B / Benchmark folder / Source Files / TBenchMarker.h < prev    next >
Encoding:
Text File  |  1993-04-20  |  423 b   |  19 lines  |  [TEXT/MPS ]

  1. // Copyright © 1992-1993 Emergent Behavior. All rights reserved.
  2.  
  3. #ifndef _TBENCHMARKER_
  4. #define _TBENCHMARKER_
  5.  
  6. typedef long Time;
  7.  
  8. //=================================================================
  9. class TBenchMarker {
  10. public:
  11.  
  12.     static     Time            TestAdditionSpeed();
  13.     static    Time            TestDivisionSpeed();
  14.     static    Time            TestRandomNumberSpeed();
  15.  
  16. };
  17.  
  18. //=================================================================
  19. #endif