/** * @file * graph layout functions. */ /* * Authors: * Tim Dwyer * * Copyright (C) 2005 Authors * * Released under GNU GPL. Read the file 'COPYING' for more information. */ #ifndef SEEN_GRAPHLAYOUT_H #define SEEN_GRAPHLAYOUT_H #include class SPItem; void graphlayout(std::vector const &items); bool isConnector(SPItem const *const item); void filterConnectors(std::vector const &items, std::list &filtered); #endif // SEEN_GRAPHLAYOUT_H