]> git.tdb.fi Git - libs/core.git/blob - source/debug/profilingscope.h
Drop copyright and license notices from source files
[libs/core.git] / source / debug / profilingscope.h
1 #ifndef MSP_DEBUG_PROFILINGSCOPE_H_
2 #define MSP_DEBUG_PROFILINGSCOPE_H_
3
4 #include "../time/timestamp.h"
5 #include "profiler.h"
6
7 namespace Msp {
8 namespace Debug {
9
10 /**
11 RAII timing class to accompany Profiler.  Timing starts when an object is
12 created and ends when it goes out of scope.  If there was another object in an
13 outer scope, it is notified of the time used in inner scopes.
14 */
15 class ProfilingScope
16 {
17 private:
18         Profiler &profiler;
19         std::string name;
20         ProfilingScope *parent;
21         Time::TimeStamp start_t;
22         Time::TimeDelta child_t;
23
24         ProfilingScope(const ProfilingScope &);
25         ProfilingScope &operator=(const ProfilingScope &);
26 public:
27         ProfilingScope(Profiler &p, const std::string &n);
28         ~ProfilingScope();
29 };
30
31 } // namespace Debug
32 } // namespace Msp
33
34 #endif