Path: blob/main/contrib/llvm-project/lldb/source/Commands/CommandObjectPlatform.h
39587 views
//===-- CommandObjectPlatform.h ---------------------------------*- C++ -*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#ifndef LLDB_SOURCE_COMMANDS_COMMANDOBJECTPLATFORM_H9#define LLDB_SOURCE_COMMANDS_COMMANDOBJECTPLATFORM_H1011#include "lldb/Interpreter/CommandObjectMultiword.h"1213namespace lldb_private {1415// CommandObjectPlatform1617class CommandObjectPlatform : public CommandObjectMultiword {18public:19CommandObjectPlatform(CommandInterpreter &interpreter);2021~CommandObjectPlatform() override;2223private:24CommandObjectPlatform(const CommandObjectPlatform &) = delete;25const CommandObjectPlatform &26operator=(const CommandObjectPlatform &) = delete;27};2829} // namespace lldb_private3031#endif // LLDB_SOURCE_COMMANDS_COMMANDOBJECTPLATFORM_H323334