]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/GraphicsParams.C
add <string> and other small fixes to make
[lyx.git] / src / graphics / GraphicsParams.C
index 1a13a5bae25ea82dbebc9d5990a773d01183de7b..f9317fed70dfaffb9a38dbe67b6f0f8ec3cc5fe1 100644 (file)
@@ -16,8 +16,9 @@
 
 #include "support/std_sstream.h"
 
+
+using std::string;
 using std::abs;
-using std::istringstream;
 
 
 namespace lyx {
@@ -46,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)
 {}