2011-03-19 09:12:21 +08:00
|
|
|
//===-- CommandObjectPlatform.h ---------------------------------*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2011-03-19 09:12:21 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef liblldb_CommandObjectPlatform_h_
|
|
|
|
#define liblldb_CommandObjectPlatform_h_
|
|
|
|
|
|
|
|
#include "lldb/Interpreter/CommandObjectMultiword.h"
|
2011-04-13 08:18:08 +08:00
|
|
|
#include "lldb/Interpreter/Options.h"
|
2011-03-19 09:12:21 +08:00
|
|
|
|
|
|
|
namespace lldb_private {
|
|
|
|
|
|
|
|
// CommandObjectPlatform
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
class CommandObjectPlatform : public CommandObjectMultiword {
|
2011-03-19 09:12:21 +08:00
|
|
|
public:
|
2016-09-07 04:57:50 +08:00
|
|
|
CommandObjectPlatform(CommandInterpreter &interpreter);
|
2011-03-19 09:12:21 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
~CommandObjectPlatform() override;
|
2011-03-19 09:12:21 +08:00
|
|
|
|
2015-09-02 17:33:09 +08:00
|
|
|
private:
|
2016-09-07 04:57:50 +08:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(CommandObjectPlatform);
|
2011-03-19 09:12:21 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace lldb_private
|
|
|
|
|
2015-09-02 17:33:09 +08:00
|
|
|
#endif // liblldb_CommandObjectPlatform_h_
|