Code

Disable the page selector when there's only one page
[inkscape.git] / src / libnr / nr-rect-l.h
index 756a537b0bb8071a81816a0f05ccbf4146006fc1..b84a8f0cbb9c41dfbab080aa2f2694cb8cf6cde6 100644 (file)
@@ -2,13 +2,15 @@
 #define SEEN_NR_RECT_L_H
 
 #include <libnr/nr-i-coord.h>
+#include <libnr/nr-maybe.h>
+#include <libnr/nr-rect.h>
+#include <libnr/nr-point-l.h>
 
 struct NRRectL {
+    NR::Maybe<NR::Rect> upgrade() const;
     NR::ICoord x0, y0, x1, y1;
 };
 
-#include <libnr/nr-rect.h>
-#include <libnr/nr-point-l.h>
 
 namespace NR {