1//===- Stub.h -------------------------------------------------------------===//
2//
3//                     The MCLinker Project
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9#ifndef LD_STUB_H
10#define LD_STUB_H
11#ifdef ENABLE_UNITTEST
12#include <gtest.h>
13#endif
14#include "mcld/LD/Relocation.h"
15
16namespace mcld
17{
18
19/** \class Stub
20 *  \brief Stub is a piece of jumpping code.
21 */
22class Stub
23{
24
25};
26
27} // namespace of mcld
28
29#endif
30
31