xref: /llvm-project/lldb/source/Commands/CommandObjectLog.h (revision 2946cd701067404b99c39fb29dc9c74bd7193eb3)
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 #include <map>
13 #include <string>
14 
15 #include "lldb/Interpreter/CommandObjectMultiword.h"
16 
17 namespace lldb_private {
18 
19 //-------------------------------------------------------------------------
20 // CommandObjectLog
21 //-------------------------------------------------------------------------
22 
23 class CommandObjectLog : public CommandObjectMultiword {
24 public:
25   //------------------------------------------------------------------
26   // Constructors and Destructors
27   //------------------------------------------------------------------
28   CommandObjectLog(CommandInterpreter &interpreter);
29 
30   ~CommandObjectLog() override;
31 
32 private:
33   //------------------------------------------------------------------
34   // For CommandObjectLog only
35   //------------------------------------------------------------------
36   DISALLOW_COPY_AND_ASSIGN(CommandObjectLog);
37 };
38 
39 } // namespace lldb_private
40 
41 #endif // liblldb_CommandObjectLog_h_
42