Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ImGuiContext.hpp « src « profiler - github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b489cf65cac8a04d8555ad4ac9e709c726cc1e4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __IMGUICONTEXT_HPP__
#define __IMGUICONTEXT_HPP__

#include <string>

class ImGuiTracyContext
{
public:
    ImGuiTracyContext();
    ~ImGuiTracyContext();

private:
    std::string m_iniFilename;
};

#endif