#ifndef LLDB_UTILITY_EVENT_H
#define LLDB_UTILITY_EVENT_H
#include "lldb/Utility/Broadcaster.h"
#include "lldb/Utility/ConstString.h"
#include "lldb/Utility/Predicate.h"
#include "lldb/Utility/StructuredData.h"
#include "lldb/lldb-defines.h"
#include "lldb/lldb-forward.h"
#include "llvm/ADT/StringRef.h"
#include <chrono>
#include <memory>
#include <string>
#include <cstddef>
#include <cstdint>
namespace lldb_private {
class Event;
class Stream;
}
namespace lldb_private {
class EventData { … };
class EventDataBytes : public EventData { … };
class EventDataReceipt : public EventData { … };
class EventDataStructuredData : public EventData { … };
class Event : public std::enable_shared_from_this<Event> { … };
}
#endif