GraphBasicTypes.h revision 87f34658dec9097d987d254a990ea7f311bfc95f
1//===- GraphBasicTypes.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 MCLD_ADT_GRAPHLITE_GRAPHBASICTYPES_H
10#define MCLD_ADT_GRAPHLITE_GRAPHBASICTYPES_H
11
12namespace mcld {
13namespace graph {
14
15/** \class UndirectedTag
16 *  \brief Undirected graph category.
17 */
18struct UndirectedTag {};
19
20/** \class DirectedTag
21 *  \brief Directed graph category.
22 */
23struct DirectedTag {};
24
25} // namespace of graph
26} // namespace of mcld
27
28#endif
29
30