//-*-c++-*- #ifndef _TREELEAFLAYOUT_H #define _TREELEAFLAYOUT_H #include // Class TreeLeaf implemente l'interface Layout // Permet d'obtenir un placement aleatorie des sommets du graphe // Autheur Auber David // Date 01/12/1999 /// class TreeLeaf:public Layout { public: TreeLeaf(PropertyContext *); ~TreeLeaf(); bool run(); bool check(std::string &); void reset(); int dfsPlacement(node,int &,int ); }; #endif