tracy/server/TracyEvent.hpp
2017-09-21 21:57:40 +02:00

23 lines
254 B
C++
Executable File

#ifndef __TRACYEVENT_HPP__
#define __TRACYEVENT_HPP__
#include "TracyVector.hpp"
namespace tracy
{
struct Event
{
int64_t start;
int64_t end;
uint32_t srcloc;
Vector<Event*> child;
};
enum { EventSize = sizeof( Event ) };
}
#endif