blob: f94cdf3287aa294023db3aa60f17e5f56b1813ed [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- CommandObjectMemory.h -----------------------------------*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Chris Lattner30fdc8d2010-06-08 16:52:24 +00006//
7//===----------------------------------------------------------------------===//
8
9#ifndef liblldb_CommandObjectMemory_h_
10#define liblldb_CommandObjectMemory_h_
11
Chris Lattner30fdc8d2010-06-08 16:52:24 +000012#include "lldb/Interpreter/CommandObjectMultiword.h"
13
14namespace lldb_private {
15
Kate Stoneb9c1b512016-09-06 20:57:50 +000016class CommandObjectMemory : public CommandObjectMultiword {
Chris Lattner30fdc8d2010-06-08 16:52:24 +000017public:
Kate Stoneb9c1b512016-09-06 20:57:50 +000018 CommandObjectMemory(CommandInterpreter &interpreter);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000019
Kate Stoneb9c1b512016-09-06 20:57:50 +000020 ~CommandObjectMemory() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000021};
22
Chris Lattner30fdc8d2010-06-08 16:52:24 +000023} // namespace lldb_private
24
Pavel Labath1fb7e202015-09-02 09:33:09 +000025#endif // liblldb_CommandObjectMemory_h_