]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/GraphicsParams.C
Trivial fixes to some warnings thrown up by MSVS.Net 2003.
[lyx.git] / src / graphics / GraphicsParams.C
index 91f54a0916afb3f42a14fe8ad0357451b11b16c8..6274ea1d6ba77814ef26152691ef95a333f952ae 100644 (file)
 
 #include "lyxlength.h"
 
-#include "support/std_sstream.h"
+#include <sstream>
 
+
+using std::string;
 using std::abs;
 
 
@@ -45,6 +47,13 @@ bool operator!=(Params const & a, Params const & b)
 }
 
 
+std::ostream & operator<<(std::ostream & os, BoundingBox const & bb)
+{
+       os << bb.xl << ' ' << bb.yb << ' ' << bb.xr << ' ' << bb.yt;
+       return os;
+}
+
+
 BoundingBox::BoundingBox()
        : xl(0), yb(0), xr(0), yt(0)
 {}