Home | History | Annotate | Download | only in Mips
      1 //===- MipsELFMCLinker.h --------------------------------------------------===//
      2 //
      3 //                     The MCLinker Project
      4 //
      5 // This file is distributed under the University of Illinois Open Source
      6 // License. See LICENSE.TXT for details.
      7 //
      8 //===----------------------------------------------------------------------===//
      9 #ifndef TARGET_MIPS_MIPSELFMCLINKER_H
     10 #define TARGET_MIPS_MIPSELFMCLINKER_H
     11 #include <mcld/Target/ELFMCLinker.h>
     12 
     13 namespace mcld {
     14 
     15 class Module;
     16 class FileHandle;
     17 
     18 /** \class MipsELFMCLinker
     19  *  \brief MipsELFMCLinker sets up the environment for linking.
     20  */
     21 class MipsELFMCLinker : public ELFMCLinker
     22 {
     23 public:
     24   MipsELFMCLinker(LinkerConfig& pConfig,
     25                   mcld::Module& pModule,
     26                   FileHandle& pFileHandle);
     27 
     28   ~MipsELFMCLinker();
     29 };
     30 
     31 } // namespace of mcld
     32 
     33 #endif
     34 
     35