Valor 6800 1.0
Loading...
Searching...
No Matches
Profiler.h
1
2#pragma once
3
4namespace valor {
5
6namespace util {
7
8class Profiler {
9 public:
10 static inline bool IsEnabled() { return enabled; }
11 static inline void SetEnabled(bool enabled) { Profiler::enabled = enabled; }
12
13 private:
14 static bool enabled;
15};
16
17} // namespace util
18
19} // namespace valor
Definition Profiler.h:8