mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
25 lines
295 B
C++
Executable File
25 lines
295 B
C++
Executable File
#ifndef __TRACYEVENT_HPP__
|
|
#define __TRACYEVENT_HPP__
|
|
|
|
#include "TracyVector.hpp"
|
|
|
|
namespace tracy
|
|
{
|
|
|
|
struct Event
|
|
{
|
|
int64_t start;
|
|
int64_t end;
|
|
uint64_t srcloc;
|
|
|
|
const char* text;
|
|
Event* parent;
|
|
Vector<Event*> child;
|
|
};
|
|
|
|
enum { EventSize = sizeof( Event ) };
|
|
|
|
}
|
|
|
|
#endif
|