BranchIsland.h revision abe0db302735bbdf9cd84caee2a36e6c4538fc4d
1//===- BranchIsland.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 BRANCHISLAND_H
10#define BRANCHISLAND_H
11#ifdef ENABLE_UNITTEST
12#include <gtest.h>
13#endif
14
15namespace mcld
16{
17
18/** \class BranchIsland
19 *  \brief BranchIsland is a collection of stubs
20 *
21 */
22class BranchIsland
23{
24
25};
26
27} // namespace of mcld
28
29#endif
30