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
|