1 /* 2 * 微秒级计时器,用来统计程序运行时间 3 * http://blog.csdn.net/hoya5121/article/details/3778487#comments 4 * //整理 [10/16/2013 Duan Yihao] 5 */ 6 7 #pragma once 8 9 #include "stdafx.h" 10 11 12 ////////////////////////////////////////////////////////////////////////// 13 class timer 14 {... Read More
posted @ 2013-10-16 13:40 vranger Views(399) Comments(0) Diggs(0)
1 //myTimer.h 2 3 // [10/16/2013 Duan Yihao] 4 5 #pragma once 6 7 #include "StdAfx.h" 8 9 ////////////////////////////////////////////////////////////////////////// 10 class myTimer 11 { 12 13 public: 14 myTimer(void); 15 ~myTimer(void); 16 17 public: 18 void start(void)... Read More
posted @ 2013-10-16 11:08 vranger Views(686) Comments(0) Diggs(0)