autolayouter.cpp
00001 /* 00002 * copyright (C) 2005 00003 * Umbrello UML Modeller Authors <uml-devel @uml.sf.net> 00004 */ 00005 00006 /*************************************************************************** 00007 * * 00008 * This program is free software; you can redistribute it and/or modify * 00009 * it under the terms of the GNU General Public License as published by * 00010 * the Free Software Foundation; either version 2 of the License, or * 00011 * (at your option) any later version. * 00012 * * 00013 ***************************************************************************/ 00014 #include "autolayouter.h" 00015 00016 namespace Autolayout { 00017 00018 00019 00020 void Autolayouter::autolayout( UMLView * v ) 00021 { 00022 setCanvas(v); 00023 setGraph(v); 00024 run(); 00025 updateView(v); 00026 } 00027 00028 } // end namespace Autolayout 00029
