Ocular Engine
ProfilerScope.hpp
1 
17 #pragma once
18 #ifndef __H__OCULAR_CORE_PERFORMANCE_PROFILER_SCOPE__H__
19 #define __H__OCULAR_CORE_PERFORMANCE_PROFILER_SCOPE__H__
20 
21 #include <string>
22 
23 //------------------------------------------------------------------------------------------
24 
29 namespace Ocular
30 {
35  namespace Core
36  {
43  {
44  public:
45 
46  ProfilerScope(std::string const& name);
47  ~ProfilerScope();
48 
49  protected:
50 
51  private:
52 
53  };
54  }
58 }
63 //------------------------------------------------------------------------------------------
64 
65 #endif
Note: Once this library is made dynamic, this will no longer be needed.
Definition: Common.hpp:70
Definition: ProfilerScope.hpp:42