llvm/lldb/source/API/SBWatchpointOptions.cpp

//===-- SBWatchpointOptions.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/SBWatchpointOptions.h"
#include "lldb/Breakpoint/Watchpoint.h"
#include "lldb/Utility/Instrumentation.h"

#include "Utils.h"

usingnamespacelldb;
usingnamespacelldb_private;

class WatchpointOptionsImpl {};


SBWatchpointOptions::SBWatchpointOptions()
    :{}

SBWatchpointOptions::SBWatchpointOptions(const SBWatchpointOptions &rhs) {}

const SBWatchpointOptions &
SBWatchpointOptions::operator=(const SBWatchpointOptions &rhs) {}

SBWatchpointOptions::~SBWatchpointOptions() = default;

void SBWatchpointOptions::SetWatchpointTypeRead(bool read) {}
bool SBWatchpointOptions::GetWatchpointTypeRead() const {}

void SBWatchpointOptions::SetWatchpointTypeWrite(
    WatchpointWriteType write_type) {}

WatchpointWriteType SBWatchpointOptions::GetWatchpointTypeWrite() const {}