VPTissue Reference Manual
ClockTraits.h
Go to the documentation of this file.
1 #ifndef UTIL_CLOCK_MAN_CLOCK_TRAITS_H_INCLUDED
2 #define UTIL_CLOCK_MAN_CLOCK_TRAITS_H_INCLUDED
3 /*
4  * Copyright 2011-2016 Universiteit Antwerpen
5  *
6  * Licensed under the EUPL, Version 1.1 or as soon they will be approved by
7  * the European Commission - subsequent versions of the EUPL (the "Licence");
8  * You may not use this work except in compliance with the Licence.
9  * You may obtain a copy of the Licence at: http://ec.europa.eu/idabc/eupl5
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the Licence is distributed on an "AS IS" basis,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the Licence for the specific language governing
15  * permissions and limitations under the Licence.
16  */
22 #include "ClockCLib.h"
23 #include "CumulativeRecords.h"
24 #include "IndividualRecords.h"
25 #include "Stopwatch.h"
26 
27 #include <chrono>
28 
29 namespace SimPT_Sim {
30 namespace ClockMan {
31 
35 template<typename C = std::chrono::system_clock, typename D = typename C::duration>
37 {
38 public:
40  using Clock = C;
41 
44 
46  using Duration = D;
47 
50 
53 
54 };
55 
56 } // namespace
57 } // namespace
58 
59 #endif // end-of-include-guard
Types related to timekeeping.
Definition: ClockTraits.h:36
Interface for CumulativeRecords.
Interface/Implementation for ClockCLib.
Utility class to record durations in a cumulative manner.
Namespace for the core simulator.
Interface for IndividualRecords.
Provides a stopwatch interface to time: it accumulates time between start/stop pairs.
Definition: Stopwatch.h:39
typename std::chrono::system_clock::duration Duration
Type for time duration units.
Definition: ClockTraits.h:46
Definition of Stopwatch.
Utility class to record durations.