blob: 3e731fa1d186f5c7f0a889e5987ce736bf0788eb [file] [log] [blame]
Chris Lattner24943d22010-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 Clayton63094e02010-06-23 01:19:29 +000034 CommandObjectLog(CommandInterpreter &interpreter);
Chris Lattner24943d22010-06-08 16:52:24 +000035
36 virtual
37 ~CommandObjectLog();
38
39private:
40 //------------------------------------------------------------------
41 // For CommandObjectLog only
42 //------------------------------------------------------------------
43 DISALLOW_COPY_AND_ASSIGN (CommandObjectLog);
44};
45
46} // namespace lldb_private
47
48#endif // liblldb_CommandObjectLog_h_