Go to the documentation of this file.00001
00002
00003
00004
00005
00006
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
00082 ~DfsMakeBiconnected() { }
00083
00084 protected:
00086 void doCall(Graph& G, List<edge> &L);
00087 };
00088
00089 }
00090
00091 #endif