1f034231aSEd Maste //===-- CommandObjectWatchpointCommand.h ------------------------*- C++ -*-===// 2f034231aSEd Maste // 35f29bb8aSDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 45f29bb8aSDimitry Andric // See https://llvm.org/LICENSE.txt for license information. 55f29bb8aSDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6f034231aSEd Maste // 7f034231aSEd Maste //===----------------------------------------------------------------------===// 8f034231aSEd Maste 9cfca06d7SDimitry Andric #ifndef LLDB_SOURCE_COMMANDS_COMMANDOBJECTWATCHPOINTCOMMAND_H 10cfca06d7SDimitry Andric #define LLDB_SOURCE_COMMANDS_COMMANDOBJECTWATCHPOINTCOMMAND_H 11f034231aSEd Maste 12f034231aSEd Maste #include "lldb/Interpreter/CommandObjectMultiword.h" 13f034231aSEd Maste 14f034231aSEd Maste namespace lldb_private { 15f034231aSEd Maste 16f034231aSEd Maste // CommandObjectMultiwordWatchpoint 17f034231aSEd Maste 1814f1b3e8SDimitry Andric class CommandObjectWatchpointCommand : public CommandObjectMultiword { 19f034231aSEd Maste public: 20f034231aSEd Maste CommandObjectWatchpointCommand(CommandInterpreter &interpreter); 21f034231aSEd Maste 22e81d9d49SDimitry Andric ~CommandObjectWatchpointCommand() override; 23f034231aSEd Maste }; 24f034231aSEd Maste 25f034231aSEd Maste } // namespace lldb_private 26f034231aSEd Maste 27cfca06d7SDimitry Andric #endif // LLDB_SOURCE_COMMANDS_COMMANDOBJECTWATCHPOINTCOMMAND_H 28