blob: 593c4521e175b3fe4032b96d41443126564ee714 [file] [log] [blame]
Davide Italiano10166c72018-03-23 21:55:48 +00001//===-- CommandObjectStats.h ------------------------------------*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Davide Italiano10166c72018-03-23 21:55:48 +00006//
7//===----------------------------------------------------------------------===//
8
9#ifndef liblldb_CommandObjectStats_h_
10#define liblldb_CommandObjectStats_h_
11
Davide Italiano24fff242018-04-13 18:02:39 +000012#include "lldb/Interpreter/CommandObjectMultiword.h"
Davide Italiano10166c72018-03-23 21:55:48 +000013
14namespace lldb_private {
Davide Italiano24fff242018-04-13 18:02:39 +000015class CommandObjectStats : public CommandObjectMultiword {
Davide Italiano10166c72018-03-23 21:55:48 +000016public:
17 CommandObjectStats(CommandInterpreter &interpreter);
18
19 ~CommandObjectStats() override;
Davide Italiano10166c72018-03-23 21:55:48 +000020};
21} // namespace lldb_private
22
23#endif // liblldb_CommandObjectLanguage_h_