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 00043 #ifdef _MSC_VER 00044 #pragma once 00045 #endif 00046 00047 #ifndef OGDF_MMCB_LOCAL_STRETCH_H 00048 #define OGDF_MMCB_LOCAL_STRETCH_H 00049 00050 00051 00052 #include <ogdf/planarlayout/MMCBBase.h> 00053 00054 00055 namespace ogdf { 00056 00057 00061 class OGDF_EXPORT MMCBLocalStretch : public MMCBBase 00062 { 00063 public: 00065 MMCBLocalStretch() { } 00066 00067 ~MMCBLocalStretch() { } 00068 00069 protected: 00071 void doCall(const PlanRep &PG, GridLayout &gl, const List<node> &L); 00072 }; 00073 00074 00075 } // end namespace ogdf 00076 00077 #endif