Bladeren bron

Line supports move.

Steve Thielemann 3 jaren geleden
bovenliggende
commit
79fbc250eb
2 gewijzigde bestanden met toevoegingen van 11 en 0 verwijderingen
  1. 1 0
      door.h
  2. 10 0
      lines.cpp

+ 1 - 0
door.h

@@ -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);

+ 10 - 0
lines.cpp

@@ -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?
  *