blob: f817cc189b4587c5889bae2a6bcece965aeee220 [file] [log] [blame]
Chris Lattner24943d22010-06-08 16:52:24 +00001//===-- CommandObjectInfo.cpp -----------------------------------*- 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#include "CommandObjectInfo.h"
11
12// C Includes
13// C++ Includes
14// Other libraries and framework includes
15// Project includes
16
17using namespace lldb_private;
18
19//-------------------------------------------------------------------------
20// CommandObjectInfo
21//-------------------------------------------------------------------------
22
23CommandObjectInfo::CommandObjectInfo () :
24CommandObjectCrossref ("info", "Lists the kinds of objects for which you can get information, and shows the syntax for doing so.", "info")
25{
26}
27
28CommandObjectInfo::~CommandObjectInfo ()
29{
30}
31
32