use unique_ptr to hold the Layers vector

This commit is contained in:
2019-02-24 13:19:15 +01:00
parent 3d1412aee2
commit dfa44dbb55
13 changed files with 216 additions and 200 deletions

View File

@@ -13,8 +13,8 @@ class RTT
int h = 0;
public:
//RTT(const RTT&) = delete;
//RTT(RTT&&) = default;
RTT(const RTT&) = delete;
RTT(RTT&& other);
RTT();
~RTT();