blob: 45e3ca214812c2bd6f038fe1f5784069f29f3b50 [file] [log] [blame]
//===- ELFObjectFileFormat.h ----------------------------------------------===//
//
// The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef MCLD_ELF_OBJECT_FILE_FROMAT_H
#define MCLD_ELF_OBJECT_FILE_FROMAT_H
#include <mcld/LD/ELFFileFormat.h>
namespace mcld {
class ObjectBuilder;
/** \class ELFObjectFileFormat
* \brief ELFObjectFileFormat describes the format for ELF dynamic objects.
*/
class ELFObjectFileFormat : public ELFFileFormat
{
void initObjectFormat(ObjectBuilder& pBuilder, unsigned int pBitClass) {
// do nothing
return;
}
};
} // namespace of mcld
#endif