_graph.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef AUTOLAYOUTGRAPH_H
00016 #define AUTOLAYOUTGRAPH_H
00017 #include "baseinclude.h"
00018 namespace Autolayout {
00019
00023 class Graph{
00024 public:
00025 virtual ~Graph() {}
00026 virtual void addNode(const char *name, int width,int heigt)=0;
00027 virtual void addEdge(const char* nodea,const char*nodeb,int weight=100)=0;
00028 virtual Node* getNode(const char*)=0;
00029 virtual bool empty()=0;
00030 };
00031
00032 }
00033
00034 #endif
This file is part of the documentation for umbrello Version 3.1.0.