Gazebo Math
API Reference
9.0.0~pre1
insert_drive_file
Tutorials
library_books
Classes
toc
Namespaces
insert_drive_file
Files
launch
Gazebo Website
Index
List
Hierarchy
Members: All
Members: Functions
Members: Variables
Members: Typedefs
Members: Enumerations
Members: Enumerator
List
Members
Functions
Typedefs
Variables
Enumerations
Enumerator
src
gz-math
include
gz
math
Stopwatch.hh
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2018 Open Source Robotics Foundation
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
6
* You may obtain a copy of the License at
7
*
8
* http://www.apache.org/licenses/LICENSE-2.0
9
*
10
* Unless required by applicable law or agreed to in writing, software
11
* distributed under the License is distributed on an "AS IS" BASIS,
12
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
* See the License for the specific language governing permissions and
14
* limitations under the License.
15
*
16
*/
17
18
#ifndef GZ_MATH_STOPWATCH_HH_
19
#define GZ_MATH_STOPWATCH_HH_
20
21
#include <chrono>
22
#include <gz/math/Export.hh>
23
#include <gz/math/config.hh>
24
#include <gz/utils/ImplPtr.hh>
25
26
namespace
gz::math
27
{
28
// Inline bracket to help doxygen filtering.
29
inline
namespace
GZ_MATH_VERSION_NAMESPACE {
51
class
GZ_MATH_VISIBLE
Stopwatch
52
{
54
public
:
Stopwatch
();
55
60
public
:
bool
Start
(
const
bool
_reset
=
false
);
61
66
public
: std::chrono::steady_clock::time_point
StartTime
()
const
;
67
71
public
:
bool
Stop
();
72
77
public
: std::chrono::steady_clock::time_point
StopTime
()
const
;
78
81
public
:
bool
Running
()
const
;
82
85
public
:
void
Reset
();
86
92
public
: std::chrono::steady_clock::duration
ElapsedRunTime
()
const
;
93
99
public
: std::chrono::steady_clock::duration
ElapsedStopTime
()
const
;
100
104
public
:
bool
operator==
(
const
Stopwatch
&
_watch
)
const
;
105
109
public
:
bool
operator!=
(
const
Stopwatch
&
_watch
)
const
;
110
112
GZ_UTILS_IMPL_PTR
(dataPtr)
113
};
114
}
// namespace GZ_MATH_VERSION_NAMESPACE
115
}
// namespace gz::math
116
#endif
// GZ_MATH_STOPWATCH_HH_