xref: /llvm-project/lldb/source/Commands/CommandObjectLog.h (revision b9c1b51e45b845debb76d8658edabca70ca56079)
1 //===-- CommandObjectLog.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_CommandObjectLog_h_
11 #define liblldb_CommandObjectLog_h_
12 
13 // C Includes
14 // C++ Includes
15 #include <map>
16 #include <string>
17 
18 // Other libraries and framework includes
19 // Project includes
20 #include "lldb/Interpreter/CommandObjectMultiword.h"
21 
22 namespace lldb_private {
23 
24 //-------------------------------------------------------------------------
25 // CommandObjectLog
26 //-------------------------------------------------------------------------
27 
28 class CommandObjectLog : public CommandObjectMultiword {
29 public:
30   //------------------------------------------------------------------
31   // Constructors and Destructors
32   //------------------------------------------------------------------
33   CommandObjectLog(CommandInterpreter &interpreter);
34 
35   ~CommandObjectLog() override;
36 
37 private:
38   //------------------------------------------------------------------
39   // For CommandObjectLog only
40   //------------------------------------------------------------------
41   DISALLOW_COPY_AND_ASSIGN(CommandObjectLog);
42 };
43 
44 } // namespace lldb_private
45 
46 #endif // liblldb_CommandObjectLog_h_
47