1 //===-- CommandObjectStats.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 "CommandObjectStats.h" 11 #include "lldb/Host/Host.h" 12 #include "lldb/Interpreter/CommandInterpreter.h" 13 #include "lldb/Interpreter/CommandReturnObject.h" 14 15 using namespace lldb; 16 using namespace lldb_private; 17 18 CommandObjectStats::CommandObjectStats(CommandInterpreter &interpreter) 19 : CommandObjectParsed( 20 interpreter, "stats", "Print statistics about a debugging session", 21 nullptr) { 22 } 23 24 bool CommandObjectStats::DoExecute(Args &command, CommandReturnObject &result) { 25 return true; 26 } 27 28 CommandObjectStats::~CommandObjectStats() {} 29