blob: 1306bc95dff7d6de6e84aa9ac5058d97095b79be [file] [log] [blame]
//===- ARMELFMCLinker.h ---------------------------------------------------===//
//
// The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef ARM_ELF_SECTION_LINKER_H
#define ARM_ELF_SECTION_LINKER_H
#ifdef ENABLE_UNITTEST
#include <gtest.h>
#endif
#include <mcld/Target/ELFMCLinker.h>
namespace mcld {
class Module;
class FileHandle;
/** \class ARMELFMCLinker
* \brief ARMELFMCLinker sets up the environment for linking.
*/
class ARMELFMCLinker : public ELFMCLinker
{
public:
ARMELFMCLinker(LinkerConfig& pConfig,
mcld::Module& pModule,
FileHandle& pFileHandle);
~ARMELFMCLinker();
};
} // namespace of mcld
#endif