티스토리 뷰
#ifndef DW_TIMEMSR__H__ #define DW_TIMEMSR__H__ #includenamespace DW { class TimeMsr { public: // LARGE_INTEGER.QuadPart is LONGLONG(a.k.a __int64) LARGE_INTEGER larBegin; LARGE_INTEGER larEnd; static LARGE_INTEGER larFrequency; public: TimeMsr() { if (larFrequency.QuadPart == 0) // if the value of frequency is not loaded QueryPerformanceFrequency(&larFrequency); // retrieves the frequency of the high-resolution performance counter } inline void begin() { QueryPerformanceCounter(&larBegin); } inline void end() { QueryPerformanceCounter(&larEnd); } inline double getTimeElapsed() { // The unit is second(NOT milli-second). return (double)(larEnd.QuadPart - larBegin.QuadPart) / (double)larFrequency.QuadPart; } }; // end of class TimeMsr LARGE_INTEGER TimeMsr::larFrequency = {0}; // } // end of namespace DW // reference : http://i0nucleus.egloos.com/2240494 #endif // DW_TIMEMSR__H__
'C & C++ > MS VC++' 카테고리의 다른 글
MSVC++로 Dll 파일 제작 - 소스코드 기본틀 (0) | 2009.11.05 |
---|
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 볼륨 낮춤
- destructor
- pandas
- MSVC++
- Accelerated C++
- ctypes
- GSX 1200 pro
- matrix multiplication
- CanDrA
- structure
- Item 9
- Visual C++
- tensorflow
- dll
- armadillo c++
- GSX 1000 pro
- C++
- QPrinter.A4
- TensorBoard
- QPrinter.Letter
- PyQt
- TCGA
- 볼륨 조절
- 설치
- cython
- QT
- 이상한 문자
- volume dial
- how to solve it
- Python
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함