blob: 1e24a4b2ac67bf24b884716a9c6c0beb73b58a9d [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
Kate Stoneb9c1b512016-09-06 20:57:50 +000028class CommandObjectLog : public CommandObjectMultiword {
Chris Lattner30fdc8d2010-06-08 16:52:24 +000029public:
Kate Stoneb9c1b512016-09-06 20:57:50 +000030 //------------------------------------------------------------------
31 // Constructors and Destructors
32 //------------------------------------------------------------------
33 CommandObjectLog(CommandInterpreter &interpreter);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000034
Kate Stoneb9c1b512016-09-06 20:57:50 +000035 ~CommandObjectLog() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000036
37private:
Kate Stoneb9c1b512016-09-06 20:57:50 +000038 //------------------------------------------------------------------
39 // For CommandObjectLog only
40 //------------------------------------------------------------------
41 DISALLOW_COPY_AND_ASSIGN(CommandObjectLog);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000042};
43
44} // namespace lldb_private
45
Pavel Labath1fb7e202015-09-02 09:33:09 +000046#endif // liblldb_CommandObjectLog_h_