Changes between Version 1 and Version 2 of soc/2007/UserFriendlyGraphDesignTwo


Ignore:
Timestamp:
May 14, 2007, 4:23:05 PM (15 years ago)
Author:
Andrew Sutton
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • soc/2007/UserFriendlyGraphDesignTwo

    v1 v2  
    77  {
    88    typedef adjacency_list<OEL, VL, undirectedS, VP, EP, GP, EL> graph_type;
    9     graph_type graph;
     9    graph_type g;
    1010
    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; }
    1417
    1518    // other stuff so we comply with graph_traits<>