blob: e079220d0efef5e569704ee7c364f6079f4fa190 [file] [log] [blame]
Johnny Chene9a56272012-08-09 23:09:42 +00001//===-- CommandObjectWatchpointCommand.h ------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef liblldb_CommandObjectWatchpointCommand_h_
11#define liblldb_CommandObjectWatchpointCommand_h_
12
Johnny Chene9a56272012-08-09 23:09:42 +000013
Johnny Chene9a56272012-08-09 23:09:42 +000014
Johnny Chene9a56272012-08-09 23:09:42 +000015#include "lldb/Interpreter/CommandObjectMultiword.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000016#include "lldb/Interpreter/Options.h"
17#include "lldb/lldb-types.h"
Johnny Chene9a56272012-08-09 23:09:42 +000018
19namespace lldb_private {
20
21//-------------------------------------------------------------------------
22// CommandObjectMultiwordWatchpoint
23//-------------------------------------------------------------------------
24
Kate Stoneb9c1b512016-09-06 20:57:50 +000025class CommandObjectWatchpointCommand : public CommandObjectMultiword {
Johnny Chene9a56272012-08-09 23:09:42 +000026public:
Kate Stoneb9c1b512016-09-06 20:57:50 +000027 CommandObjectWatchpointCommand(CommandInterpreter &interpreter);
Johnny Chene9a56272012-08-09 23:09:42 +000028
Kate Stoneb9c1b512016-09-06 20:57:50 +000029 ~CommandObjectWatchpointCommand() override;
Johnny Chene9a56272012-08-09 23:09:42 +000030};
31
32} // namespace lldb_private
33
Pavel Labath1fb7e202015-09-02 09:33:09 +000034#endif // liblldb_CommandObjectWatchpointCommand_h_