*** empty log message ***
[lilypond.git] / flower / include / cpu-timer.hh
blob19ad18294770863d9b9c8fd5d34100315d4602a0
1 /*
2 cpu-timer.hh -- declare Cpu_timer
4 source file of the Flower Library
6 (c) 1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
10 #ifndef CPU_TIMER_HH
11 #define CPU_TIMER_HH
13 #include <time.h>
14 #include "real.hh"
16 class Cpu_timer {
17 clock_t start_clock_;
18 public:
19 Cpu_timer ();
20 void restart ();
21 Real read ();
24 #endif // CPU_TIMER_HH