Backlog/lib/tracy/tracy-0.10/profiler/src/ImGuiContext.hpp

17 lines
215 B
C++

#ifndef __IMGUICONTEXT_HPP__
#define __IMGUICONTEXT_HPP__
#include <string>
class ImGuiTracyContext
{
public:
ImGuiTracyContext();
~ImGuiTracyContext();
private:
std::string m_iniFilename;
};
#endif