2010-06-09 00:52:24 +08:00
|
|
|
//===-- CommandObjectLog.h --------------------------------------*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2010-06-09 00:52:24 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef liblldb_CommandObjectLog_h_
|
|
|
|
#define liblldb_CommandObjectLog_h_
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "lldb/Interpreter/CommandObjectMultiword.h"
|
|
|
|
|
|
|
|
namespace lldb_private {
|
|
|
|
|
|
|
|
// CommandObjectLog
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
class CommandObjectLog : public CommandObjectMultiword {
|
2010-06-09 00:52:24 +08:00
|
|
|
public:
|
2016-09-07 04:57:50 +08:00
|
|
|
// Constructors and Destructors
|
|
|
|
CommandObjectLog(CommandInterpreter &interpreter);
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
~CommandObjectLog() override;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
private:
|
2016-09-07 04:57:50 +08:00
|
|
|
// For CommandObjectLog only
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(CommandObjectLog);
|
2010-06-09 00:52:24 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace lldb_private
|
|
|
|
|
2015-09-02 17:33:09 +08:00
|
|
|
#endif // liblldb_CommandObjectLog_h_
|