//===- Stub.h -------------------------------------------------------------===//
//
//                     The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef LD_STUB_H
#define LD_STUB_H
#ifdef ENABLE_UNITTEST
#include <gtest.h>
#endif
#include "mcld/LD/Relocation.h"

namespace mcld
{

/** \class Stub
 *  \brief Stub is a piece of jumpping code.
 */
class Stub
{

};

} // namespace of mcld

#endif