CommandObjectLog.h revision 360784
1//===-- CommandObjectLog.h --------------------------------------*- C++ -*-===//
2//
3// 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
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef liblldb_CommandObjectLog_h_
10#define liblldb_CommandObjectLog_h_
11
12
13#include "lldb/Interpreter/CommandObjectMultiword.h"
14
15namespace lldb_private {
16
17// CommandObjectLog
18
19class CommandObjectLog : public CommandObjectMultiword {
20public:
21  // Constructors and Destructors
22  CommandObjectLog(CommandInterpreter &interpreter);
23
24  ~CommandObjectLog() override;
25
26private:
27  // For CommandObjectLog only
28  DISALLOW_COPY_AND_ASSIGN(CommandObjectLog);
29};
30
31} // namespace lldb_private
32
33#endif // liblldb_CommandObjectLog_h_
34