@@ -491,6 +491,7 @@ public:
Line(const std::string &txt, int width, renderFunction rf);
Line(const char *txt, int width, renderFunction rf);
Line(const Line &rhs);
+ Line(Line &&rhs);
// ~Line();
bool hasRender(void);
@@ -165,6 +165,16 @@ Line::Line(const Line &rhs)
width = rhs.width;
}
+Line::Line(Line &&rhs)
+ : text{rhs.text}, hasColor{rhs.hasColor}, color{rhs.color},
+ padding{rhs.padding}, paddingColor{rhs.paddingColor} {
+ if (rhs.render)
+ render = rhs.render;
+ if (rhs.updater)
+ updater = rhs.updater;
+ width = rhs.width;
+}
+
/**
* Has a render function been set?
*