spnktime.hpp

来自「linux 下的程序源代码」· HPP 代码 · 共 29 行

HPP
29
字号
/* * Copyright 2008 Stephen Liu * For license terms, see the file COPYING along with this library. */#ifndef __spnktime_hpp__#define __spnktime_hpp__#include <sys/types.h>class SP_NKClock {public:	SP_NKClock();	~SP_NKClock();	// @return ms	long getAge();	// @return ms	long getInterval();private:	struct timeval mBornTime;	struct timeval mPrevTime;};#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?