Open
Graph Drawing
Framework

 v.2012.05
 

DfsMakeBiconnected.h
Go to the documentation of this file.
00001 /*
00002  * $Revision: 2299 $
00003  * 
00004  * last checkin:
00005  *   $Author: gutwenger $ 
00006  *   $Date: 2012-05-07 15:57:08 +0200 (Mon, 07 May 2012) $ 
00007  ***************************************************************/
00008  
00042 #ifdef _MSC_VER
00043 #pragma once
00044 #endif
00045 
00046 #ifndef OGDF_DFS_MAKE_BICONNECTED_H
00047 #define OGDF_DFS_MAKE_BICONNECTED_H
00048 
00049 
00050 
00051 #include <ogdf/module/AugmentationModule.h>
00052 
00053 namespace ogdf {
00054 
00066 class OGDF_EXPORT DfsMakeBiconnected : public AugmentationModule {
00067 public:
00069     DfsMakeBiconnected() { }
00070 
00071     // destruction
00072     ~DfsMakeBiconnected() { }
00073 
00074 protected:
00076     void doCall(Graph& G, List<edge> &L);
00077 };
00078 
00079 } // end namespace ogdf
00080 
00081 #endif