summaryrefslogtreecommitdiff
path: root/include/mcld/LD/DynObjFileFormat.h
blob: 7b1626d004567064e28268ae2ee991386bb7ed8f (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
//===- header.h -----------------------------------------------------------===//
//
//                     The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef DYNOBJFORMAT_H
#define DYNOBJFORMAT_H
#ifdef ENABLE_UNITTEST
#include <gtest.h>
#endif

namespace mcld
{

/** \class DynObjFormat
 *  \brief DynObjFormat describes the file format for dynamic objects.
 */
class DynObjFormat : public LDFileFormat
{

};

} // namespace of mcld

#endif