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