mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-04 07:36:50 +00:00
15 lines
186 B
C++
15 lines
186 B
C++
#pragma once
|
|
|
|
#include <time.h>
|
|
|
|
class GElapsedTimer {
|
|
public:
|
|
GElapsedTimer() { }
|
|
|
|
void start();
|
|
int elapsed() const;
|
|
|
|
private:
|
|
struct timeval m_start_time { 0, 0 };
|
|
};
|