1061da546Spatrick //===-- CommandObjectPlatform.h ---------------------------------*- C++ -*-===// 2061da546Spatrick // 3061da546Spatrick // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4061da546Spatrick // See https://llvm.org/LICENSE.txt for license information. 5061da546Spatrick // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6061da546Spatrick // 7061da546Spatrick //===----------------------------------------------------------------------===// 8061da546Spatrick 9*dda28197Spatrick #ifndef LLDB_SOURCE_COMMANDS_COMMANDOBJECTPLATFORM_H 10*dda28197Spatrick #define LLDB_SOURCE_COMMANDS_COMMANDOBJECTPLATFORM_H 11061da546Spatrick 12061da546Spatrick #include "lldb/Interpreter/CommandObjectMultiword.h" 13061da546Spatrick 14061da546Spatrick namespace lldb_private { 15061da546Spatrick 16061da546Spatrick // CommandObjectPlatform 17061da546Spatrick 18061da546Spatrick class CommandObjectPlatform : public CommandObjectMultiword { 19061da546Spatrick public: 20061da546Spatrick CommandObjectPlatform(CommandInterpreter &interpreter); 21061da546Spatrick 22061da546Spatrick ~CommandObjectPlatform() override; 23061da546Spatrick 24061da546Spatrick private: 25*dda28197Spatrick CommandObjectPlatform(const CommandObjectPlatform &) = delete; 26*dda28197Spatrick const CommandObjectPlatform & 27*dda28197Spatrick operator=(const CommandObjectPlatform &) = delete; 28061da546Spatrick }; 29061da546Spatrick 30061da546Spatrick } // namespace lldb_private 31061da546Spatrick 32*dda28197Spatrick #endif // LLDB_SOURCE_COMMANDS_COMMANDOBJECTPLATFORM_H 33