22 lines
626 B
C++
22 lines
626 B
C++
//===- DynObjFileFormat.h -------------------------------------------------===//
|
|
//
|
|
// The MCLinker Project
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
#ifndef MCLD_LD_DYNOBJFILEFORMAT_H_
|
|
#define MCLD_LD_DYNOBJFILEFORMAT_H_
|
|
|
|
namespace mcld {
|
|
|
|
/** \class DynObjFormat
|
|
* \brief DynObjFormat describes the file format for dynamic objects.
|
|
*/
|
|
class DynObjFormat : public LDFileFormat {};
|
|
|
|
} // namespace mcld
|
|
|
|
#endif // MCLD_LD_DYNOBJFILEFORMAT_H_
|