blob: be5215f2bdc39563217bea292e818a3151bbcdf0 [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- 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
22namespace lldb_private {
23
24//-------------------------------------------------------------------------
25// CommandObjectLog
26//-------------------------------------------------------------------------
27
28class CommandObjectLog : public CommandObjectMultiword
29{
30public:
31 //------------------------------------------------------------------
32 // Constructors and Destructors
33 //------------------------------------------------------------------
Greg Clayton66111032010-06-23 01:19:29 +000034 CommandObjectLog(CommandInterpreter &interpreter);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000035
Pavel Labath1fb7e202015-09-02 09:33:09 +000036 ~CommandObjectLog() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000037
38private:
39 //------------------------------------------------------------------
40 // For CommandObjectLog only
41 //------------------------------------------------------------------
42 DISALLOW_COPY_AND_ASSIGN (CommandObjectLog);
43};
44
45} // namespace lldb_private
46
Pavel Labath1fb7e202015-09-02 09:33:09 +000047#endif // liblldb_CommandObjectLog_h_