Home | History | Annotate | Download | only in Target
      1 //===- DarwinLDBackend.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 DARWINLDBACKEND_H
     10 #define DARWINLDBACKEND_H
     11 #ifdef ENABLE_UNITTEST
     12 #include <gtest.h>
     13 #endif
     14 
     15 namespace mcld
     16 {
     17 
     18 /** \class DarwinLDBackend
     19  *  \brief DarwinLDBackend provides a common interface for all Darwin OS LDBackend.
     20  *
     21  *  \see
     22  */
     23 class DarwinLDBackend
     24 {
     25 
     26 };
     27 
     28 } // namespace of mcld
     29 
     30 #endif
     31 
     32