6 #ifndef OPENMPCD_PROFILING_STOPWATCH_HPP
7 #define OPENMPCD_PROFILING_STOPWATCH_HPP
9 #include <boost/chrono.hpp>
35 : startingTime(boost::chrono::high_resolution_clock::now())
57 const boost::chrono::high_resolution_clock::time_point now =
58 boost::chrono::high_resolution_clock::now();
59 const boost::chrono::microseconds m =
60 boost::chrono::duration_cast<boost::chrono::microseconds>(
70 const boost::chrono::high_resolution_clock::time_point startingTime;
76 #endif //OPENMPCD_PROFILING_STOPWATCH_HPP