tracy/server/TracyView.hpp

30 lines
356 B
C++
Raw Normal View History

2017-09-12 23:33:50 +00:00
#ifndef __TRACYVIEW_HPP__
#define __TRACYVIEW_HPP__
#include <atomic>
#include <string>
#include <thread>
namespace tracy
{
class View
{
public:
View() : View( "127.0.0.1" ) {}
View( const char* addr );
~View();
private:
void Worker();
std::string m_addr;
std::thread m_thread;
std::atomic<bool> m_shutdown;
};
}
#endif