Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 1 | //===-- CommandObjectQuit.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 "CommandObjectQuit.h" |
| 11 | |
| 12 | // C Includes |
| 13 | // C++ Includes |
| 14 | // Other libraries and framework includes |
| 15 | // Project includes |
Eli Friedman | b4a4728 | 2010-06-09 07:57:51 +0000 | [diff] [blame] | 16 | #include "lldb/Interpreter/CommandInterpreter.h" |
| 17 | #include "lldb/Interpreter/CommandReturnObject.h" |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 18 | |
| 19 | using namespace lldb; |
| 20 | using namespace lldb_private; |
| 21 | |
| 22 | //------------------------------------------------------------------------- |
| 23 | // CommandObjectQuit |
| 24 | //------------------------------------------------------------------------- |
| 25 | |
| 26 | CommandObjectQuit::CommandObjectQuit () : |
| 27 | CommandObject ("quit", "Quits out of the LLDB debugger.", "quit") |
| 28 | { |
| 29 | } |
| 30 | |
| 31 | CommandObjectQuit::~CommandObjectQuit () |
| 32 | { |
| 33 | } |
| 34 | |
| 35 | bool |
| 36 | CommandObjectQuit::Execute |
| 37 | ( |
Greg Clayton | 63094e0 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 38 | CommandInterpreter &interpreter, |
| 39 | Args& args, |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 40 | CommandReturnObject &result |
| 41 | ) |
| 42 | { |
Greg Clayton | 63094e0 | 2010-06-23 01:19:29 +0000 | [diff] [blame] | 43 | interpreter.BroadcastEvent (CommandInterpreter::eBroadcastBitQuitCommandReceived); |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 44 | result.SetStatus (eReturnStatusQuit); |
| 45 | return true; |
| 46 | } |
| 47 | |