1254721Semaste//===-- CommandObjectSyntax.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_CommandObjectSyntax_h_
11254721Semaste#define liblldb_CommandObjectSyntax_h_
12254721Semaste
13254721Semaste// C Includes
14254721Semaste// C++ Includes
15254721Semaste// Other libraries and framework includes
16254721Semaste// Project includes
17254721Semaste#include "lldb/Interpreter/CommandObject.h"
18254721Semaste
19254721Semastenamespace lldb_private {
20254721Semaste
21254721Semaste//-------------------------------------------------------------------------
22254721Semaste// CommandObjectSyntax
23254721Semaste//-------------------------------------------------------------------------
24254721Semaste
25254721Semasteclass CommandObjectSyntax : public CommandObjectParsed
26254721Semaste{
27254721Semastepublic:
28254721Semaste
29254721Semaste    CommandObjectSyntax (CommandInterpreter &interpreter);
30254721Semaste
31254721Semaste    virtual
32254721Semaste    ~CommandObjectSyntax ();
33254721Semaste
34254721Semasteprotected:
35254721Semaste    virtual bool
36254721Semaste    DoExecute (Args& command,
37254721Semaste             CommandReturnObject &result);
38254721Semaste
39254721Semaste
40254721Semaste};
41254721Semaste
42254721Semaste} // namespace lldb_private
43254721Semaste
44254721Semaste#endif  // liblldb_CommandObjectSyntax_h_
45