blob: 2615bcbc285cb0efbe683d71e5e6e66d34ce6302 [file] [log] [blame]
Tamas Berghammer3937bc62015-07-02 10:03:37 +00001//===-- CommandObjectBugreport.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
Tamas Berghammer3937bc62015-07-02 10:03:37 +00006//
7//===----------------------------------------------------------------------===//
8
9#ifndef liblldb_CommandObjectBugreport_h_
10#define liblldb_CommandObjectBugreport_h_
11
Tamas Berghammer3937bc62015-07-02 10:03:37 +000012#include "lldb/Interpreter/CommandObjectMultiword.h"
13
14namespace lldb_private {
15
16//-------------------------------------------------------------------------
17// CommandObjectMultiwordBugreport
18//-------------------------------------------------------------------------
19
Kate Stoneb9c1b512016-09-06 20:57:50 +000020class CommandObjectMultiwordBugreport : public CommandObjectMultiword {
Tamas Berghammer3937bc62015-07-02 10:03:37 +000021public:
Kate Stoneb9c1b512016-09-06 20:57:50 +000022 CommandObjectMultiwordBugreport(CommandInterpreter &interpreter);
Tamas Berghammer3937bc62015-07-02 10:03:37 +000023
Kate Stoneb9c1b512016-09-06 20:57:50 +000024 ~CommandObjectMultiwordBugreport() override;
Tamas Berghammer3937bc62015-07-02 10:03:37 +000025};
26
27} // namespace lldb_private
28
Pavel Labath1fb7e202015-09-02 09:33:09 +000029#endif // liblldb_CommandObjectBugreport_h_