blob: 6083ad77f8c171b0c16ffd96197ec534baa6e4a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/**
* @file
* graph layout functions.
*/
/*
* Authors:
* Tim Dwyer <tgdwyer@gmail.com>
*
* Copyright (C) 2005 Authors
*
* Released under GNU GPL. Read the file 'COPYING' for more information.
*/
#ifndef SEEN_GRAPHLAYOUT_H
#define SEEN_GRAPHLAYOUT_H
struct _GSList;
void graphlayout(_GSList const *const items);
class SPItem;
bool isConnector(SPItem const *const item);
#include <list>
void filterConnectors(_GSList const *const items, std::list<SPItem *> &filtered);
#endif // SEEN_GRAPHLAYOUT_H
|