llvm/lldb/source/Target/TraceCursor.cpp

//===-- TraceCursor.cpp -----------------------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "lldb/Target/TraceCursor.h"

#include "lldb/Target/ExecutionContext.h"
#include "lldb/Target/Trace.h"

usingnamespacelldb;
usingnamespacelldb_private;
usingnamespacellvm;

TraceCursor::TraceCursor(lldb::ThreadSP thread_sp)
    :{}

ExecutionContextRef &TraceCursor::GetExecutionContextRef() {}

void TraceCursor::SetForwards(bool forwards) {}

bool TraceCursor::IsForwards() const {}

bool TraceCursor::IsError() const {}

bool TraceCursor::IsEvent() const {}

bool TraceCursor::IsInstruction() const {}

const char *TraceCursor::GetEventTypeAsString() const {}

const char *TraceCursor::EventKindToString(lldb::TraceEvent event_kind) {}