InfoVis 2013  1.0
Information Visualisation project - "Mapping Text with Phrase Nets"
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
TimerHelper.h
Go to the documentation of this file.
1 #ifndef TIMER_HELPER_CLASSES_H
2 #define TIMER_HELPER_CLASSES_H
3 
4 #include <windows.h>
5 
7 {
8  LARGE_INTEGER m_start;
9  LARGE_INTEGER m_stop;
10  LARGE_INTEGER m_frequency;
11 };
12 
13 double LargeIntegerToSeconds(const LARGE_INTEGER& value, const LARGE_INTEGER& frequency);
14 
15 #endif