blob: 27e9a6ff865a2175c8cd7670c6b05c65f4099806 [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
12#include "lldb/Interpreter/CommandObject.h"
Davide Italiano24fff242018-04-13 18:02:39 +000013#include "lldb/Interpreter/CommandObjectMultiword.h"
Davide Italiano10166c72018-03-23 21:55:48 +000014
15namespace lldb_private {
Davide Italiano24fff242018-04-13 18:02:39 +000016class CommandObjectStats : public CommandObjectMultiword {
Davide Italiano10166c72018-03-23 21:55:48 +000017public:
18 CommandObjectStats(CommandInterpreter &interpreter);
19
20 ~CommandObjectStats() override;
Davide Italiano10166c72018-03-23 21:55:48 +000021};
22} // namespace lldb_private
23
24#endif // liblldb_CommandObjectLanguage_h_