diff options
Diffstat (limited to 'source/Commands/CommandObjectStats.h')
| -rw-r--r-- | source/Commands/CommandObjectStats.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/source/Commands/CommandObjectStats.h b/source/Commands/CommandObjectStats.h new file mode 100644 index 000000000000..3c5c2c04db1f --- /dev/null +++ b/source/Commands/CommandObjectStats.h @@ -0,0 +1,25 @@ +//===-- 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_ |
