diff options
| author | Tavmjong Bah <tavmjong@free.fr> | 2018-01-30 08:33:01 +0000 |
|---|---|---|
| committer | Tavmjong Bah <tavmjong@free.fr> | 2018-01-30 08:33:01 +0000 |
| commit | 267299811df952d08324a39008f52c19641de9e0 (patch) | |
| tree | 28fef736a52cb7a72119d119be8eb663ad20a77f /src/graphlayout.cpp | |
| parent | Translations: update inkscape.pot (diff) | |
| download | inkscape-267299811df952d08324a39008f52c19641de9e0.tar.gz inkscape-267299811df952d08324a39008f52c19641de9e0.zip | |
Move classes derived from SPObject to own directory.
A lot of header clean-up.
Diffstat (limited to 'src/graphlayout.cpp')
| -rw-r--r-- | src/graphlayout.cpp | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/src/graphlayout.cpp b/src/graphlayout.cpp index ba8cd10d5..31115b999 100644 --- a/src/graphlayout.cpp +++ b/src/graphlayout.cpp @@ -12,24 +12,29 @@ * Released under GNU GPL. Read the file 'COPYING' for more information. */ +#include <algorithm> +#include <cstring> #include <iostream> #include <map> #include <vector> -#include <algorithm> -#include <cstring> + #include <2geom/transforms.h> +#include "conn-avoid-ref.h" #include "desktop.h" -#include "inkscape.h" -#include "sp-namedview.h" #include "graphlayout.h" -#include "sp-item-transform.h" -#include "style.h" -#include "conn-avoid-ref.h" +#include "inkscape.h" + #include "libavoid/router.h" + #include "libcola/cola.h" #include "libcola/connected_components.h" +#include "object/sp-item-transform.h" +#include "object/sp-namedview.h" +#include "object/sp-path.h" +#include "style.h" + using namespace std; using namespace cola; using namespace vpsc; |
