a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
BasicTimer.cpp
Go to the documentation of this file.
1/*
2 * BasicTimer.cpp
3 *
4 * Created on: Oct 23, 2013
5 * Author: Ben O'Leary (benjamin.oleary@gmail.com)
6 */
7
8#include "../include/BasicTimer.hpp"
9
10namespace BOL
11{
12
13 BasicTimer::BasicTimer( double givenDuration,
14 timeval const* const startTimeval ):
15 givenDuration( givenDuration ),
16 startTimeval()
17 {
19 }
20
22 {
23 // does nothing.
24 }
25
26} /* namespace BOL */
void setStartTime(timeval const *const startTimeval=NULL)
Definition: BasicTimer.hpp:66
timeval startTimeval
Definition: BasicTimer.hpp:46
BasicTimer(double givenDuration=0.0, timeval const *const startTimeval=NULL)
Definition: BasicTimer.cpp:13