blob: 4d22b08a4825fdca7cc219359341867973bbaffd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* Copyright (C) 2013 Antony Woods <antony@teamwoods.org>
* All rights reserved.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution.
*
* Author: Antony Woods <antony@teamwoods.org>
*/
#pragma once
#include <chrono>
namespace entityx {
namespace help {
class Timer {
public:
Timer();
~Timer();
void restart();
double elapsed();
private:
std::chrono::time_point<std::chrono::system_clock> _start;
};
} // namespace help
} // namespace entityx
|