diff options
| author | Sylvain Chiron <chironsylvain@orange.fr> | 2017-07-01 11:36:41 +0000 |
|---|---|---|
| committer | Sylvain Chiron <chironsylvain@orange.fr> | 2017-07-01 11:36:41 +0000 |
| commit | fd733201b82f39655488a286c89142f321ef9dc9 (patch) | |
| tree | a12c70f213414f69467f666619b1552103f6370e /src/libavoid/libavoid.h | |
| parent | Hackfest icon work: restore selected menu icons and make theming easier (diff) | |
| download | inkscape-fd733201b82f39655488a286c89142f321ef9dc9.tar.gz inkscape-fd733201b82f39655488a286c89142f321ef9dc9.zip | |
Updated libs from the Adaptagrams project: libavoid, libcola and libvspc; changed the code to match the new API
Signed-off-by: Sylvain Chiron <chironsylvain@orange.fr>
Diffstat (limited to 'src/libavoid/libavoid.h')
| -rw-r--r-- | src/libavoid/libavoid.h | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/src/libavoid/libavoid.h b/src/libavoid/libavoid.h index 1d4cd1fdc..3151a3e9a 100644 --- a/src/libavoid/libavoid.h +++ b/src/libavoid/libavoid.h @@ -19,28 +19,36 @@ * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * - * Author(s): Michael Wybrow <mjwybrow@users.sourceforge.net> + * Author(s): Michael Wybrow */ //! @file libavoid.h //! @brief Standard libavoid include file which includes all libavoid //! header files. -//! @namespace Avoid -//! @brief The namespace used by code in the libavoid library. - +/** + * @namespace Avoid + * @brief libavoid: Object-avoiding orthogonal and polyline connector + * routing library. + * + * You should use libavoid via an instance of the Router class. + */ #ifndef AVOID_LIBAVOID_H #define AVOID_LIBAVOID_H #include "libavoid/geomtypes.h" +#include "libavoid/shape.h" #include "libavoid/connector.h" +#include "libavoid/connend.h" #include "libavoid/graph.h" #include "libavoid/debug.h" #include "libavoid/timer.h" -#include "libavoid/makepath.h" #include "libavoid/vertices.h" #include "libavoid/visibility.h" #include "libavoid/router.h" +#include "libavoid/connectionpin.h" +#include "libavoid/junction.h" +#include "libavoid/viscluster.h" #endif |
