1254721Semaste//===-- CommandObjectThread.h -----------------------------------*- C++ -*-===//
2254721Semaste//
3254721Semaste//                     The LLVM Compiler Infrastructure
4254721Semaste//
5254721Semaste// This file is distributed under the University of Illinois Open Source
6254721Semaste// License. See LICENSE.TXT for details.
7254721Semaste//
8254721Semaste//===----------------------------------------------------------------------===//
9254721Semaste
10254721Semaste#ifndef liblldb_CommandObjectThread_h_
11254721Semaste#define liblldb_CommandObjectThread_h_
12254721Semaste
13254721Semaste// C Includes
14254721Semaste// C++ Includes
15254721Semaste// Other libraries and framework includes
16254721Semaste// Project includes
17254721Semaste#include "lldb/Interpreter/CommandObjectMultiword.h"
18254721Semaste
19254721Semastenamespace lldb_private {
20254721Semaste
21254721Semasteclass CommandObjectMultiwordThread : public CommandObjectMultiword
22254721Semaste{
23254721Semastepublic:
24254721Semaste
25254721Semaste    CommandObjectMultiwordThread (CommandInterpreter &interpreter);
26254721Semaste
27254721Semaste    virtual
28254721Semaste    ~CommandObjectMultiwordThread ();
29254721Semaste
30254721Semaste};
31254721Semaste
32254721Semaste} // namespace lldb_private
33254721Semaste
34254721Semaste#endif  // liblldb_CommandObjectThread_h_
35