blob: 3c5c2c04db1f6888e4bee0527d9bc6a223c094cb [file] [log] [blame]
//===-- CommandObjectStats.h ------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_CommandObjectStats_h_
#define liblldb_CommandObjectStats_h_
#include "lldb/Interpreter/CommandObject.h"
#include "lldb/Interpreter/CommandObjectMultiword.h"
namespace lldb_private {
class CommandObjectStats : public CommandObjectMultiword {
public:
CommandObjectStats(CommandInterpreter &interpreter);
~CommandObjectStats() override;
};
} // namespace lldb_private
#endif // liblldb_CommandObjectLanguage_h_