]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/GraphicsParams.h
Use UTF8 for LaTeX export.
[lyx.git] / src / graphics / GraphicsParams.h
index 678566e2bdc387bd679746df286ed992cf7c7bc3..222b50f85c0b752aa98e238bce57d71f36c278bb 100644 (file)
@@ -26,7 +26,8 @@ namespace graphics {
 /** Parse a string of the form "200pt 500pt 300mm 5in" into a
  *  usable bounding box.
  */
-struct BoundingBox {
+class BoundingBox {
+public:
        ///
        BoundingBox();
        ///
@@ -47,8 +48,9 @@ bool operator!=(BoundingBox const &, BoundingBox const &);
 std::ostream & operator<<(std::ostream &, BoundingBox const &);
 
 
-struct Params
+class Params
 {
+public:
        Params();
 
        DisplayType display;
@@ -67,7 +69,7 @@ struct Params
         *  image.
         */
        /// Rotation angle.
-       float angle;
+       double angle;
 };
 
 bool operator==(Params const &, Params const &);