diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2008-03-22 19:11:02 +0000 |
|---|---|---|
| committer | johanengelen <johanengelen@users.sourceforge.net> | 2008-03-22 19:11:02 +0000 |
| commit | 655fcebb893b44019786e7e9c7229975024f4d97 (patch) | |
| tree | 24a43ab726de543ef0f30f4d490d872d98ef3c10 /src/svg/stringstream.h | |
| parent | Numeric values on test area (diff) | |
| download | inkscape-655fcebb893b44019786e7e9c7229975024f4d97.tar.gz inkscape-655fcebb893b44019786e7e9c7229975024f4d97.zip | |
* add RegisteredTransformedPoint widget, that transforms the point before displaying/writing. This in order to keep them in SVG coordinate system in XML, but in canvas coord system in the spinbox
* move Geom::Point XML writing to central place in ostringstream
* add verb for LPE context
(bzr r5165)
Diffstat (limited to 'src/svg/stringstream.h')
| -rw-r--r-- | src/svg/stringstream.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/svg/stringstream.h b/src/svg/stringstream.h index 8ef5ece52..4e19125b4 100644 --- a/src/svg/stringstream.h +++ b/src/svg/stringstream.h @@ -5,6 +5,9 @@ #include <sstream> #include <string> +namespace Geom { + class Point; +} namespace Inkscape { typedef std::ios_base &(*std_oct_type)(std::ios_base &); @@ -78,6 +81,7 @@ Inkscape::SVGOStringStream &operator<<(Inkscape::SVGOStringStream &os, float d); Inkscape::SVGOStringStream &operator<<(Inkscape::SVGOStringStream &os, double d); +Inkscape::SVGOStringStream &operator<<(Inkscape::SVGOStringStream &os, Geom::Point const & p); #endif |
