Tamas Berghammer | 3937bc6 | 2015-07-02 10:03:37 +0000 | [diff] [blame] | 1 | //===-- CommandObjectBugreport.h --------------------------------*- C++ -*-===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 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 |
Tamas Berghammer | 3937bc6 | 2015-07-02 10:03:37 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #ifndef liblldb_CommandObjectBugreport_h_ |
| 10 | #define liblldb_CommandObjectBugreport_h_ |
| 11 | |
Tamas Berghammer | 3937bc6 | 2015-07-02 10:03:37 +0000 | [diff] [blame] | 12 | #include "lldb/Interpreter/CommandObjectMultiword.h" |
| 13 | |
| 14 | namespace lldb_private { |
| 15 | |
| 16 | //------------------------------------------------------------------------- |
| 17 | // CommandObjectMultiwordBugreport |
| 18 | //------------------------------------------------------------------------- |
| 19 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 20 | class CommandObjectMultiwordBugreport : public CommandObjectMultiword { |
Tamas Berghammer | 3937bc6 | 2015-07-02 10:03:37 +0000 | [diff] [blame] | 21 | public: |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 22 | CommandObjectMultiwordBugreport(CommandInterpreter &interpreter); |
Tamas Berghammer | 3937bc6 | 2015-07-02 10:03:37 +0000 | [diff] [blame] | 23 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 24 | ~CommandObjectMultiwordBugreport() override; |
Tamas Berghammer | 3937bc6 | 2015-07-02 10:03:37 +0000 | [diff] [blame] | 25 | }; |
| 26 | |
| 27 | } // namespace lldb_private |
| 28 | |
Pavel Labath | 1fb7e20 | 2015-09-02 09:33:09 +0000 | [diff] [blame] | 29 | #endif // liblldb_CommandObjectBugreport_h_ |