mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-22 22:44:34 +00:00
22 lines
231 B
C++
22 lines
231 B
C++
|
#ifndef __TRACYEVENT_HPP__
|
||
|
#define __TRACYEVENT_HPP__
|
||
|
|
||
|
#include <vector>
|
||
|
|
||
|
namespace tracy
|
||
|
{
|
||
|
|
||
|
struct Event
|
||
|
{
|
||
|
int64_t start;
|
||
|
int64_t end;
|
||
|
|
||
|
std::vector<uint64_t> child;
|
||
|
};
|
||
|
|
||
|
enum { EventSize = sizeof( Event ) };
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|