File: Timer.h

package info (click to toggle)
glbinding 3.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,972 kB
  • sloc: cpp: 224,461; javascript: 1,615; sh: 114; makefile: 98
file content (23 lines) | stat: -rw-r--r-- 324 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once

#include <chrono>


class Timer
{
public:
    Timer();

    void  start  (const char * msg);
    long double restart(const char * msg);
    long double stop();

    void setSteps(int steps);

protected:

    const char * m_msg;
    int m_steps;

    std::chrono::time_point<std::chrono::system_clock> time;
};