blob: 6a25184bac717c27b78717afe4d2a0cdbf99b191 [file] [log] [blame]
//===- 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