llvm/lldb/source/API/SBTypeFormat.cpp

//===-- SBTypeFormat.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/API/SBTypeFormat.h"
#include "lldb/Utility/Instrumentation.h"

#include "lldb/API/SBStream.h"

#include "lldb/DataFormatters/DataVisualization.h"

usingnamespacelldb;
usingnamespacelldb_private;

SBTypeFormat::SBTypeFormat() {}

SBTypeFormat::SBTypeFormat(lldb::Format format, uint32_t options)
    :{}

SBTypeFormat::SBTypeFormat(const char *type, uint32_t options)
    :{}

SBTypeFormat::SBTypeFormat(const lldb::SBTypeFormat &rhs)
    :{}

SBTypeFormat::~SBTypeFormat() = default;

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

lldb::Format SBTypeFormat::GetFormat() {}

const char *SBTypeFormat::GetTypeName() {}

uint32_t SBTypeFormat::GetOptions() {}

void SBTypeFormat::SetFormat(lldb::Format fmt) {}

void SBTypeFormat::SetTypeName(const char *type) {}

void SBTypeFormat::SetOptions(uint32_t value) {}

bool SBTypeFormat::GetDescription(lldb::SBStream &description,
                                  lldb::DescriptionLevel description_level) {}

lldb::SBTypeFormat &SBTypeFormat::operator=(const lldb::SBTypeFormat &rhs) {}

bool SBTypeFormat::operator==(lldb::SBTypeFormat &rhs) {}

bool SBTypeFormat::IsEqualTo(lldb::SBTypeFormat &rhs) {}

bool SBTypeFormat::operator!=(lldb::SBTypeFormat &rhs) {}

lldb::TypeFormatImplSP SBTypeFormat::GetSP() {}

void SBTypeFormat::SetSP(const lldb::TypeFormatImplSP &typeformat_impl_sp) {}

SBTypeFormat::SBTypeFormat(const lldb::TypeFormatImplSP &typeformat_impl_sp)
    :{}

bool SBTypeFormat::CopyOnWrite_Impl(Type type) {}