autolayout/node.h
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 00015 #ifndef AUTOLAYOUTNODE_H 00016 #define AUTOLAYOUTNODE_H 00017 00018 namespace Autolayout { 00019 00023 class Node{ 00024 00025 //Node(Agnode_t* n); 00026 00027 00028 // 00029 public: 00030 virtual ~Node() {} 00031 virtual int getX()=0; 00032 virtual int getY()=0; 00033 00034 00035 }; 00036 } 00037 #endif
