blob: 1d9aea59925a5feba99f35d3251ab33ee2365405 [file] [log] [blame]
Tamas Berghammer3937bc62015-07-02 10:03:37 +00001//===-- CommandObjectBugreport.h --------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef liblldb_CommandObjectBugreport_h_
11#define liblldb_CommandObjectBugreport_h_
12
Tamas Berghammer3937bc62015-07-02 10:03:37 +000013#include "lldb/Interpreter/CommandObjectMultiword.h"
14
15namespace lldb_private {
16
17//-------------------------------------------------------------------------
18// CommandObjectMultiwordBugreport
19//-------------------------------------------------------------------------
20
Kate Stoneb9c1b512016-09-06 20:57:50 +000021class CommandObjectMultiwordBugreport : public CommandObjectMultiword {
Tamas Berghammer3937bc62015-07-02 10:03:37 +000022public:
Kate Stoneb9c1b512016-09-06 20:57:50 +000023 CommandObjectMultiwordBugreport(CommandInterpreter &interpreter);
Tamas Berghammer3937bc62015-07-02 10:03:37 +000024
Kate Stoneb9c1b512016-09-06 20:57:50 +000025 ~CommandObjectMultiwordBugreport() override;
Tamas Berghammer3937bc62015-07-02 10:03:37 +000026};
27
28} // namespace lldb_private
29
Pavel Labath1fb7e202015-09-02 09:33:09 +000030#endif // liblldb_CommandObjectBugreport_h_