[Lemon-commits] deba: r3143 - hugo/trunk/lemon/concepts

Lemon SVN svn at lemon.cs.elte.hu
Tue Jan 23 14:13:40 CET 2007


Author: deba
Date: Tue Jan 23 14:13:39 2007
New Revision: 3143

Modified:
   hugo/trunk/lemon/concepts/graph_components.h

Log:
Correction of the wrong base class



Modified: hugo/trunk/lemon/concepts/graph_components.h
==============================================================================
--- hugo/trunk/lemon/concepts/graph_components.h	(original)
+++ hugo/trunk/lemon/concepts/graph_components.h	Tue Jan 23 14:13:39 2007
@@ -2056,7 +2056,7 @@
     /// main difference between the base and this interface is that
     /// the graph alterations should handled already on this level.
     template <typename _Base = BaseUGraphComponent>
-    class ClearableUGraphComponent : public ClearableUGraphComponent<_Base> {
+    class ClearableUGraphComponent : public ClearableGraphComponent<_Base> {
     public:
 
       typedef _Base Base;
@@ -2080,8 +2080,7 @@
     /// interface is that the graph alterations should handled already
     /// on this level.
     template <typename _Base = BaseUGraphComponent>
-    class ClearableBpUGraphComponent 
-      : public ClearableBpUGraphComponent<_Base> {
+    class ClearableBpUGraphComponent : public ClearableUGraphComponent<_Base> {
     public:
 
       typedef _Base Base;



More information about the Lemon-commits mailing list