xref: /src/contrib/llvm-project/lldb/source/Commands/CommandObjectThread.h (revision 5ffd83dbcc34f10e07f6d3e968ae6365869615f4)
1f034231aSEd Maste //===-- CommandObjectThread.h -----------------------------------*- C++ -*-===//
2f034231aSEd Maste //
35f29bb8aSDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
45f29bb8aSDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
55f29bb8aSDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6f034231aSEd Maste //
7f034231aSEd Maste //===----------------------------------------------------------------------===//
8f034231aSEd Maste 
9cfca06d7SDimitry Andric #ifndef LLDB_SOURCE_COMMANDS_COMMANDOBJECTTHREAD_H
10cfca06d7SDimitry Andric #define LLDB_SOURCE_COMMANDS_COMMANDOBJECTTHREAD_H
11f034231aSEd Maste 
12f034231aSEd Maste #include "lldb/Interpreter/CommandObjectMultiword.h"
13f034231aSEd Maste 
14f034231aSEd Maste namespace lldb_private {
15f034231aSEd Maste 
1614f1b3e8SDimitry Andric class CommandObjectMultiwordThread : public CommandObjectMultiword {
17f034231aSEd Maste public:
18f034231aSEd Maste   CommandObjectMultiwordThread(CommandInterpreter &interpreter);
19f034231aSEd Maste 
20e81d9d49SDimitry Andric   ~CommandObjectMultiwordThread() override;
21f034231aSEd Maste };
22f034231aSEd Maste 
23f034231aSEd Maste } // namespace lldb_private
24f034231aSEd Maste 
25cfca06d7SDimitry Andric #endif // LLDB_SOURCE_COMMANDS_COMMANDOBJECTTHREAD_H
26