47 lines
948 B
C++
47 lines
948 B
C++
//===- OutputArchCmd.h ----------------------------------------------------===//
|
|
//
|
|
// The MCLinker Project
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
#ifndef MCLD_SCRIPT_OUTPUTARCHCMD_H
|
|
#define MCLD_SCRIPT_OUTPUTARCHCMD_H
|
|
|
|
#include <mcld/Script/ScriptCommand.h>
|
|
#include <string>
|
|
|
|
namespace mcld
|
|
{
|
|
|
|
class Module;
|
|
|
|
/** \class OutputArchCmd
|
|
* \brief This class defines the interfaces to OutputArch command.
|
|
*/
|
|
|
|
class OutputArchCmd : public ScriptCommand
|
|
{
|
|
public:
|
|
OutputArchCmd(const std::string& pArch);
|
|
~OutputArchCmd();
|
|
|
|
void dump() const;
|
|
|
|
static bool classof(const ScriptCommand* pCmd)
|
|
{
|
|
return pCmd->getKind() == ScriptCommand::OUTPUT_ARCH;
|
|
}
|
|
|
|
void activate(Module& pModule);
|
|
|
|
private:
|
|
std::string m_Arch;
|
|
};
|
|
|
|
} // namespace of mcld
|
|
|
|
#endif
|
|
|