blob: 99b92e7a40733ead0fdb288cc9f5cd348704e09b [file] [log] [blame]
Johnny Chen902e0182010-12-23 20:21:44 +00001//===-- CommandObjectVersion.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 "CommandObjectVersion.h"
11
12// C Includes
13// C++ Includes
14// Other libraries and framework includes
15// Project includes
16#include "lldb/lldb-private.h"
17#include "lldb/Interpreter/CommandInterpreter.h"
18#include "lldb/Interpreter/CommandReturnObject.h"
19
20using namespace lldb;
21using namespace lldb_private;
22
23//-------------------------------------------------------------------------
24// CommandObjectVersion
25//-------------------------------------------------------------------------
26
27CommandObjectVersion::CommandObjectVersion (CommandInterpreter &interpreter) :
28 CommandObject (interpreter, "version", "Show version of LLDB debugger.", "version")
29{
30}
31
32CommandObjectVersion::~CommandObjectVersion ()
33{
34}
35
36bool
37CommandObjectVersion::Execute
38(
39 Args& args,
40 CommandReturnObject &result
41)
42{
Jim Ingham2e8cb8a2011-02-19 02:53:09 +000043 result.AppendMessageWithFormat ("%s\n", lldb_private::GetVersion());
Johnny Chen902e0182010-12-23 20:21:44 +000044 result.SetStatus (eReturnStatusSuccessFinishResult);
45 return true;
46}
47