blob: df3db878e396073b3f56ef69a557829588736af3 [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- CommandObjectLog.h --------------------------------------*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Chris Lattner30fdc8d2010-06-08 16:52:24 +00006//
7//===----------------------------------------------------------------------===//
8
9#ifndef liblldb_CommandObjectLog_h_
10#define liblldb_CommandObjectLog_h_
11
Chris Lattner30fdc8d2010-06-08 16:52:24 +000012#include <map>
13#include <string>
14
Chris Lattner30fdc8d2010-06-08 16:52:24 +000015#include "lldb/Interpreter/CommandObjectMultiword.h"
16
17namespace lldb_private {
18
19//-------------------------------------------------------------------------
20// CommandObjectLog
21//-------------------------------------------------------------------------
22
Kate Stoneb9c1b512016-09-06 20:57:50 +000023class CommandObjectLog : public CommandObjectMultiword {
Chris Lattner30fdc8d2010-06-08 16:52:24 +000024public:
Kate Stoneb9c1b512016-09-06 20:57:50 +000025 //------------------------------------------------------------------
26 // Constructors and Destructors
27 //------------------------------------------------------------------
28 CommandObjectLog(CommandInterpreter &interpreter);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000029
Kate Stoneb9c1b512016-09-06 20:57:50 +000030 ~CommandObjectLog() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000031
32private:
Kate Stoneb9c1b512016-09-06 20:57:50 +000033 //------------------------------------------------------------------
34 // For CommandObjectLog only
35 //------------------------------------------------------------------
36 DISALLOW_COPY_AND_ASSIGN(CommandObjectLog);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000037};
38
39} // namespace lldb_private
40
Pavel Labath1fb7e202015-09-02 09:33:09 +000041#endif // liblldb_CommandObjectLog_h_