Open
Graph Drawing
Framework

 v.2010.10
 

DfsMakeBiconnected.h

Go to the documentation of this file.
00001 /*
00002  * $Revision: 2027 $
00003  * 
00004  * last checkin:
00005  *   $Author: gutwenger $ 
00006  *   $Date: 2010-09-01 11:55:17 +0200 (Wed, 01 Sep 2010) $ 
00007  ***************************************************************/
00008  
00052 #ifdef _MSC_VER
00053 #pragma once
00054 #endif
00055 
00056 #ifndef OGDF_DFS_MAKE_BICONNECTED_H
00057 #define OGDF_DFS_MAKE_BICONNECTED_H
00058 
00059 
00060 
00061 #include <ogdf/module/AugmentationModule.h>
00062 
00063 namespace ogdf {
00064 
00076 class OGDF_EXPORT DfsMakeBiconnected : public AugmentationModule {
00077 public:
00079     DfsMakeBiconnected() { }
00080 
00081     // destruction
00082     ~DfsMakeBiconnected() { }
00083 
00084 protected:
00086     void doCall(Graph& G, List<edge> &L);
00087 };
00088 
00089 } // end namespace ogdf
00090 
00091 #endif