mirror of
https://github.com/wolfpld/tracy.git
synced 2026-08-26 04:58:23 +00:00
17 lines
215 B
C++
17 lines
215 B
C++
#ifndef __IMGUICONTEXT_HPP__
|
|
#define __IMGUICONTEXT_HPP__
|
|
|
|
#include <string>
|
|
|
|
class ImGuiTracyContext
|
|
{
|
|
public:
|
|
ImGuiTracyContext();
|
|
~ImGuiTracyContext();
|
|
|
|
private:
|
|
std::string m_iniFilename;
|
|
};
|
|
|
|
#endif
|