Imported Upstream version 2.8.9
[platform/upstream/cmake.git] / Source / cmGraphAdjacencyList.h
1 /*============================================================================
2   CMake - Cross Platform Makefile Generator
3   Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
4
5   Distributed under the OSI-approved BSD License (the "License");
6   see accompanying file Copyright.txt for details.
7
8   This software is distributed WITHOUT ANY WARRANTY; without even the
9   implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10   See the License for more information.
11 ============================================================================*/
12 #ifndef cmGraphAdjacencyList_h
13 #define cmGraphAdjacencyList_h
14
15 #include "cmStandardIncludes.h"
16
17 /**
18  * Graph edge representation.  Most use cases just need the
19  * destination vertex, so we support conversion to/from an int.  We
20  * also store boolean to indicate whether an edge is "strong".
21  */
22 class cmGraphEdge
23 {
24 public:
25   cmGraphEdge(): Dest(0), Strong(true) {}
26   cmGraphEdge(int n): Dest(n), Strong(true) {}
27   cmGraphEdge(int n, bool s): Dest(n), Strong(s) {}
28   cmGraphEdge(cmGraphEdge const& r): Dest(r.Dest), Strong(r.Strong) {}
29   operator int() const { return this->Dest; }
30
31   bool IsStrong() const { return this->Strong; }
32 private:
33   int Dest;
34   bool Strong;
35 };
36 struct cmGraphEdgeList: public std::vector<cmGraphEdge> {};
37 struct cmGraphNodeList: public std::vector<int> {};
38 struct cmGraphAdjacencyList: public std::vector<cmGraphEdgeList> {};
39
40 #endif