repo.or.cz
/
exterlulz-musk.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
change folder layout
[exterlulz-musk.git]
/
src
/
musk
/
timer.h
blob
d9363a84cc0e0dbaf6892db1b24b5f1b79f7832d
1
#ifndef MUSK_TIMER_H_
2
#define MUSK_TIMER_H_
3
4
namespace
musk
{
5
6
class
Timer
7
{
8
public
:
9
Timer
();
10
11
uint32_t
ticks
()
const
;
12
13
private
:
14
bool
stopped_
;
15
uint32_t
ticks_
;
16
};
17
18
}
// namespace musk
19
20
#endif
// MUSK_TIMER_H_