Changes between Version 1 and Version 2 of soc/2007/UserFriendlyGraphDesignTwo
- Timestamp:
- May 14, 2007, 4:23:05 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
soc/2007/UserFriendlyGraphDesignTwo
v1 v2 7 7 { 8 8 typedef adjacency_list<OEL, VL, undirectedS, VP, EP, GP, EL> graph_type; 9 graph_type g raph;9 graph_type g; 10 10 11 public: 12 graph_type& impl(); 13 const graph_type& impl(); 11 public: 12 inline graph_type& impl() 13 { return g; } 14 15 inline const graph_type& impl() const 16 { return g; } 14 17 15 18 // other stuff so we comply with graph_traits<>