diff options
Diffstat (limited to 'lldb/source/Commands/CommandObjectStats.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectStats.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/lldb/source/Commands/CommandObjectStats.cpp b/lldb/source/Commands/CommandObjectStats.cpp new file mode 100644 index 00000000000..84a8a6c376f --- /dev/null +++ b/lldb/source/Commands/CommandObjectStats.cpp @@ -0,0 +1,28 @@ +//===-- CommandObjectStats.cpp ----------------------------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include "CommandObjectStats.h" +#include "lldb/Host/Host.h" +#include "lldb/Interpreter/CommandInterpreter.h" +#include "lldb/Interpreter/CommandReturnObject.h" + +using namespace lldb; +using namespace lldb_private; + +CommandObjectStats::CommandObjectStats(CommandInterpreter &interpreter) + : CommandObjectParsed( + interpreter, "stats", "Print statistics about a debugging session", + nullptr) { +} + +bool CommandObjectStats::DoExecute(Args &command, CommandReturnObject &result) { + return true; +} + +CommandObjectStats::~CommandObjectStats() {} |