HexagonELFMCLinker.h revision 87f34658dec9097d987d254a990ea7f311bfc95f
1//===- HexagonELFMCLinker.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 HEXAGON_ELFSECTLINKER_H
10#define HEXAGON_ELFSECTLINKER_H
11#ifdef ENABLE_UNITTEST
12#include <gtest.h>
13#endif
14#include <mcld/Target/ELFMCLinker.h>
15
16namespace mcld {
17
18class Module;
19class FileHandle;
20
21/** \class HexagonELFMCLinker
22 *  \brief HexagonELFMCLinker sets up the environment for linking.
23 *
24 *  \see
25 */
26class HexagonELFMCLinker : public ELFMCLinker
27{
28public:
29  HexagonELFMCLinker(LinkerConfig& pConfig,
30                     mcld::Module& pModule,
31                     FileHandle& pFileHandle);
32
33  ~HexagonELFMCLinker();
34};
35
36} // namespace of mcld
37
38#endif
39