tracy/server/TracyEvent.hpp

22 lines
233 B
C++
Raw Normal View History

2017-09-14 00:00:13 +00:00
#ifndef __TRACYEVENT_HPP__
#define __TRACYEVENT_HPP__
2017-09-15 18:17:39 +00:00
#include "TracyVector.hpp"
2017-09-14 00:00:13 +00:00
namespace tracy
{
struct Event
{
int64_t start;
int64_t end;
2017-09-15 18:17:39 +00:00
Vector<Event*> child;
2017-09-14 00:00:13 +00:00
};
enum { EventSize = sizeof( Event ) };
}
#endif