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_MIXED_FORCE_LAYOUT_H 00047 #define OGDF_MIXED_FORCE_LAYOUT_H 00048 00049 #include <ogdf/module/LayoutModule.h> 00050 #include <ogdf/internal/energybased/MultilevelGraph.h> 00051 00052 namespace ogdf { 00053 00054 class OGDF_EXPORT MixedForceLayout : public LayoutModule 00055 { 00056 public: 00057 00058 MixedForceLayout(); 00059 00060 void call(GraphAttributes &GA); 00061 void call(MultilevelGraph &MLG); 00062 00063 private: 00064 00065 LayoutModule * m_FR; 00066 LayoutModule * m_FME; 00067 00068 }; 00069 00070 } // namespace ogdf 00071 00072 #endif