2011-03-19 09:12:21 +08:00
|
|
|
//===-- CommandObjectPlatform.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_CommandObjectPlatform_h_
|
|
|
|
#define liblldb_CommandObjectPlatform_h_
|
|
|
|
|
|
|
|
// C Includes
|
|
|
|
// C++ Includes
|
|
|
|
// Other libraries and framework includes
|
|
|
|
// Project includes
|
|
|
|
#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
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class CommandObjectPlatform : public CommandObjectMultiword
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CommandObjectPlatform(CommandInterpreter &interpreter);
|
|
|
|
|
|
|
|
virtual
|
|
|
|
~CommandObjectPlatform();
|
|
|
|
|
2011-04-13 08:18:08 +08:00
|
|
|
private:
|
2011-03-19 09:12:21 +08:00
|
|
|
DISALLOW_COPY_AND_ASSIGN (CommandObjectPlatform);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace lldb_private
|
|
|
|
|
|
|
|
#endif // liblldb_CommandObjectPlatform_h_
|