Files
clang-p2996/lldb/source/Commands/CommandObjectWatchpoint.h
Raphael Isemann 0683250127 [lldb][NFC] Remove unnecessary includes in source/Commands
Summary: This removes most of unnecessary includes in the `source/Commands` directory. This was generated by IWYU and a script that fixed all the bogus reports from IWYU. Patch is tested on Linux and macOS.

Reviewers: JDevlieghere

Reviewed By: JDevlieghere

Subscribers: krytarowski, lldb-commits

Tags: #lldb

Differential Revision: https://reviews.llvm.org/D71489
2019-12-16 08:59:08 +01:00

32 lines
1.0 KiB
C++

//===-- CommandObjectWatchpoint.h -------------------------------*- 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
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_CommandObjectWatchpoint_h_
#define liblldb_CommandObjectWatchpoint_h_
#include "lldb/Interpreter/CommandObjectMultiword.h"
#include "lldb/Interpreter/OptionGroupWatchpoint.h"
namespace lldb_private {
// CommandObjectMultiwordWatchpoint
class CommandObjectMultiwordWatchpoint : public CommandObjectMultiword {
public:
CommandObjectMultiwordWatchpoint(CommandInterpreter &interpreter);
~CommandObjectMultiwordWatchpoint() override;
static bool VerifyWatchpointIDs(Target *target, Args &args,
std::vector<uint32_t> &wp_ids);
};
} // namespace lldb_private
#endif // liblldb_CommandObjectWatchpoint_h_