llvm/lldb/source/Commands/CommandObjectStats.cpp

//===-- CommandObjectStats.cpp --------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "CommandObjectStats.h"
#include "lldb/Core/Debugger.h"
#include "lldb/Host/OptionParser.h"
#include "lldb/Interpreter/CommandOptionArgumentTable.h"
#include "lldb/Interpreter/CommandReturnObject.h"
#include "lldb/Interpreter/OptionArgParser.h"
#include "lldb/Target/Target.h"

usingnamespacelldb;
usingnamespacelldb_private;

class CommandObjectStatsEnable : public CommandObjectParsed {};

class CommandObjectStatsDisable : public CommandObjectParsed {};

#define LLDB_OPTIONS_statistics_dump
#include "CommandOptions.inc"

class CommandObjectStatsDump : public CommandObjectParsed {};

CommandObjectStats::CommandObjectStats(CommandInterpreter &interpreter)
    :{}

CommandObjectStats::~CommandObjectStats() = default;