llvm/lldb/source/API/SBQueueItem.cpp

//===-- SBQueueItem.cpp ---------------------------------------------------===//
//
// 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/lldb-forward.h"

#include "lldb/API/SBAddress.h"
#include "lldb/API/SBQueueItem.h"
#include "lldb/API/SBThread.h"
#include "lldb/Core/Address.h"
#include "lldb/Target/Process.h"
#include "lldb/Target/QueueItem.h"
#include "lldb/Target/Thread.h"
#include "lldb/Utility/Instrumentation.h"

usingnamespacelldb;
usingnamespacelldb_private;

// Constructors
SBQueueItem::SBQueueItem() {}

SBQueueItem::SBQueueItem(const QueueItemSP &queue_item_sp)
    :{}

// Destructor
SBQueueItem::~SBQueueItem() {}

bool SBQueueItem::IsValid() const {}
operator bool()

void SBQueueItem::Clear() {}

void SBQueueItem::SetQueueItem(const QueueItemSP &queue_item_sp) {}

lldb::QueueItemKind SBQueueItem::GetKind() const {}

void SBQueueItem::SetKind(lldb::QueueItemKind kind) {}

SBAddress SBQueueItem::GetAddress() const {}

void SBQueueItem::SetAddress(SBAddress addr) {}

SBThread SBQueueItem::GetExtendedBacktraceThread(const char *type) {}