summaryrefslogtreecommitdiff
path: root/include/mcld/LD/ELFExecFileFormat.h
blob: a6544fa1645e71b38777240f3e5278a1516264f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//===- ELFExecFileFormat.h ------------------------------------------------===//
//
//                     The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef MCLD_ELF_EXEC_FILE_FORMAT_H
#define MCLD_ELF_EXEC_FILE_FORMAT_H
#ifdef ENABLE_UNITTEST
#include <gtest.h>
#endif
#include <mcld/LD/ELFFileFormat.h>

namespace mcld
{

class GNULDBackend;
class MCLinker;

/** \class ELFExecFileFormat
 *  \brief ELFExecFileFormat describes the format for ELF dynamic objects.
 */
class ELFExecFileFormat : public ELFFileFormat
{
public:
  ELFExecFileFormat(GNULDBackend& pBackend) : ELFFileFormat(pBackend)
  {}

  void initObjectType(MCLinker& pLinker)
  { /** TODO **/ }
};

} // namespace of mcld

#endif