packages feed

accelerate-1.4.0.0: cbits/tracy/profiler/src/ImGuiContext.hpp

#ifndef __IMGUICONTEXT_HPP__
#define __IMGUICONTEXT_HPP__

#include <string>

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

private:
    std::string m_iniFilename;
};

#endif