ScopedProfiler.h 939 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #pragma once
  2. #include <IUnityProfiler.h>
  3. namespace unity
  4. {
  5. namespace webrtc
  6. {
  7. class UnityProfiler;
  8. class ScopedProfiler
  9. {
  10. public:
  11. ScopedProfiler(UnityProfiler* profiler, const UnityProfilerMarkerDesc& desc);
  12. ~ScopedProfiler();
  13. private:
  14. void operator=(const ScopedProfiler& src) const { }
  15. ScopedProfiler(const ScopedProfiler& src) { }
  16. UnityProfiler* profiler_;
  17. const UnityProfilerMarkerDesc* m_desc;
  18. };
  19. class ScopedProfilerThread
  20. {
  21. public:
  22. ScopedProfilerThread(UnityProfiler* profiler, const char* groupName, const char* name);
  23. ~ScopedProfilerThread();
  24. private:
  25. void operator=(const ScopedProfilerThread& src) const { }
  26. ScopedProfilerThread(const ScopedProfilerThread& src) { }
  27. UnityProfiler* profiler_;
  28. UnityProfilerThreadId threadId_;
  29. };
  30. } // end namespace webrtc
  31. } // end namespace unity