1//===- ELFSectionMap.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 MCLD_LD_ELF_SECTION_MAP_H
10#define MCLD_LD_ELF_SECTION_MAP_H
11
12#include <mcld/LD/SectionMap.h>
13
14namespace mcld
15{
16
17class ELFSectionMap : public SectionMap
18{
19public:
20  ELFSectionMap();
21
22  ~ELFSectionMap();
23
24  void initStandardMaps();
25};
26
27} // namespace of mcld
28
29#endif
30
31