📄 timer.h
字号:
//// timer.h - A stopwatch//// author: J.I.v.Hemert// last updated : 29-09-1997//// This file implements the class TimerC.//#ifndef TIMER_H#define TIMER_H#ifdef Linux#include <sys/timeb.h>#endif#include <time.h>#include <fstream.h>class TimerC{ public: void Reset (); int GetTime (); void Print (ofstream & stream); private: time_t start;};#endif// eof timer.h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -