blob: ea1930e0ffdb1a4ca4e0876a5b22eec6e4a98d72 [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
Daniel Malead891f9b2012-12-05 00:20:57 +000010#include "lldb/lldb-python.h"
11
Johnny Chen902e0182010-12-23 20:21:44 +000012#include "CommandObjectVersion.h"
13
14// C Includes
15// C++ Includes
16// Other libraries and framework includes
17// Project includes
18#include "lldb/lldb-private.h"
19#include "lldb/Interpreter/CommandInterpreter.h"
20#include "lldb/Interpreter/CommandReturnObject.h"
21
22using namespace lldb;
23using namespace lldb_private;
24
25//-------------------------------------------------------------------------
26// CommandObjectVersion
27//-------------------------------------------------------------------------
28
29CommandObjectVersion::CommandObjectVersion (CommandInterpreter &interpreter) :
Jim Inghamda26bd22012-06-08 21:56:10 +000030 CommandObjectParsed (interpreter, "version", "Show version of LLDB debugger.", "version")
Johnny Chen902e0182010-12-23 20:21:44 +000031{
32}
33
34CommandObjectVersion::~CommandObjectVersion ()
35{
36}
37
38bool
Jim Inghamda26bd22012-06-08 21:56:10 +000039CommandObjectVersion::DoExecute (Args& args, CommandReturnObject &result)
Johnny Chen902e0182010-12-23 20:21:44 +000040{
Jim Ingham2e8cb8a2011-02-19 02:53:09 +000041 result.AppendMessageWithFormat ("%s\n", lldb_private::GetVersion());
Johnny Chen902e0182010-12-23 20:21:44 +000042 result.SetStatus (eReturnStatusSuccessFinishResult);
43 return true;
44}
45