| //===- ARMELFDynamic.h ----------------------------------------------------===// |
| // |
| // The MCLinker Project |
| // |
| // This file is distributed under the University of Illinois Open Source |
| // License. See LICENSE.TXT for details. |
| // |
| //===----------------------------------------------------------------------===// |
| #ifndef MCLD_ARM_ELFDYNAMIC_SECTION_H |
| #define MCLD_ARM_ELFDYNAMIC_SECTION_H |
| #ifdef ENABLE_UNITTEST |
| #include <gtest.h> |
| #endif |
| |
| #include <mcld/Target/ELFDynamic.h> |
| |
| namespace mcld { |
| |
| class ARMELFDynamic : public ELFDynamic { |
| public: |
| ARMELFDynamic(const GNULDBackend& pParent); |
| ~ARMELFDynamic(); |
| |
| private: |
| void reserveTargetEntries(const ELFFileFormat& pFormat); |
| void applyTargetEntries(const ELFFileFormat& pFormat); |
| }; |
| |
| } // namespace of mcld |
| |
| #endif |