1254721Semaste//===-- CommandObjectPlatform.h ---------------------------------*- C++ -*-===//
2254721Semaste//
3353358Sdim// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4353358Sdim// See https://llvm.org/LICENSE.txt for license information.
5353358Sdim// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6254721Semaste//
7254721Semaste//===----------------------------------------------------------------------===//
8254721Semaste
9254721Semaste#ifndef liblldb_CommandObjectPlatform_h_
10254721Semaste#define liblldb_CommandObjectPlatform_h_
11254721Semaste
12254721Semaste#include "lldb/Interpreter/CommandObjectMultiword.h"
13254721Semaste
14254721Semastenamespace lldb_private {
15254721Semaste
16254721Semaste// CommandObjectPlatform
17254721Semaste
18314564Sdimclass CommandObjectPlatform : public CommandObjectMultiword {
19254721Semastepublic:
20314564Sdim  CommandObjectPlatform(CommandInterpreter &interpreter);
21254721Semaste
22314564Sdim  ~CommandObjectPlatform() override;
23254721Semaste
24296417Sdimprivate:
25314564Sdim  DISALLOW_COPY_AND_ASSIGN(CommandObjectPlatform);
26254721Semaste};
27254721Semaste
28254721Semaste} // namespace lldb_private
29254721Semaste
30296417Sdim#endif // liblldb_CommandObjectPlatform_h_
31