home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 May
/
Pcwk5b98.iso
/
Borland
/
Cplus45
/
BC45
/
CLASSINC.PAK
/
TIMER.H
< prev
next >
Wrap
C/C++ Source or Header
|
1995-08-29
|
2KB
|
87 lines
/*------------------------------------------------------------------------*/
/* */
/* TIMER.H */
/* */
/* Copyright (c) 1991, 1994 Borland International */
/* All Rights Reserved */
/* */
/*------------------------------------------------------------------------*/
#if !defined( CLASSLIB_TIMER_H )
#define CLASSLIB_TIMER_H
#if !defined( __DOS__ ) && !defined( BUILDBIDSTIMER )
#error class TTimer only available under DOS
#endif
#if !defined( CLASSLIB_DEFS_H )
#include <classlib/defs.h>
#endif
#pragma option -Vo-
#if defined( BI_CLASSLIB_NO_po )
#pragma option -po-
#endif
class TTimer
{
public:
TTimer();
void Start();
void Stop();
void Reset();
int Status();
double Time();
static double Resolution();
private:
static unsigned Adjust;
static unsigned Calibrate();
int Running;
struct TIME
{
unsigned long DosCount;
unsigned TimerCount;
};
TIME StartTime;
double Time_;
};
#if defined( BI_OLDNAMES )
#define Timer TTimer
#endif
inline int TTimer::Status()
{
return Running;
}
inline double TTimer::Time()
{
return Time_/1.E6;
}
inline double TTimer::Resolution()
{
return 839/1.E9;
}
#if defined( BI_CLASSLIB_NO_po )
#pragma option -po.
#endif
#pragma option -Vo.
#endif // CLASSLIB_TIMER_H