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