[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git] / lldb / source / Commands / CommandObjectLog.h
blobeae41bf6b8d1eb5a157b0b4dd6e4c11fbfac5cae
1 //===-- CommandObjectLog.h --------------------------------------*- C++ -*-===//
2 //
3 // 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
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef liblldb_CommandObjectLog_h_
10 #define liblldb_CommandObjectLog_h_
13 #include "lldb/Interpreter/CommandObjectMultiword.h"
15 namespace lldb_private {
17 // CommandObjectLog
19 class CommandObjectLog : public CommandObjectMultiword {
20 public:
21 // Constructors and Destructors
22 CommandObjectLog(CommandInterpreter &interpreter);
24 ~CommandObjectLog() override;
26 private:
27 // For CommandObjectLog only
28 DISALLOW_COPY_AND_ASSIGN(CommandObjectLog);
31 } // namespace lldb_private
33 #endif // liblldb_CommandObjectLog_h_