blob: 5e159e1cbc8f209d1ac27f99357a3084b13f9c06 [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{
43 StreamString &output_stream = result.GetOutputStream();
44 output_stream.Printf ("%s\n", lldb_private::GetVersion());
45 result.SetStatus (eReturnStatusSuccessFinishResult);
46 return true;
47}
48