Open
Graph Drawing
Framework

 v.2012.05
 

MMMExampleNoTwistLayout.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_MMM_EXAMPLE_NO_TWIST_LAYOUT_H
00047 #define OGDF_MMM_EXAMPLE_NO_TWIST_LAYOUT_H
00048 
00049 #include <ogdf/module/LayoutModule.h>
00050 #include <ogdf/internal/energybased/MultilevelGraph.h>
00051 
00052 namespace ogdf {
00053 
00063 class OGDF_EXPORT MMMExampleNoTwistLayout : public LayoutModule
00064 {
00065 public:
00066 
00068     MMMExampleNoTwistLayout();
00069 
00071     void call(GraphAttributes &GA);
00072 
00074     void call(MultilevelGraph &MLG);
00075 
00076 private:
00077 
00078 };
00079 
00080 } // namespace ogdf
00081 
00082 #endif
00083