blob: f357cd290a21b8efcc3d83fc57207d137750e7b5 [file] [log] [blame]
Chris Lattner24943d22010-06-08 16:52:24 +00001//===-- CommandObjectSelect.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 "CommandObjectSelect.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// CommandObjectSelect
21//-------------------------------------------------------------------------
22
23CommandObjectSelect::CommandObjectSelect () :
24 CommandObjectCrossref ("select", "Lists the kinds of objects you can select, and shows syntax for selecting them.", "select")
25{
26}
27
28CommandObjectSelect::~CommandObjectSelect ()
29{
30}
31
32