]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/partcache.h
Make sure classes follow the rule of 0/3/5
[libs/gltk.git] / source / partcache.h
index 137bce4c37539a8c032f27b36cff0c35afc89f58..8099676f95d177ecc3855bf00006db2a3aa11263 100644 (file)
@@ -16,6 +16,9 @@ struct CachedPart
        const GL::Texture2D *texture = nullptr;
        GL::Mesh *mesh = nullptr;
 
+       CachedPart() = default;
+       CachedPart(CachedPart &&);
+       CachedPart &operator=(CachedPart &&);
        ~CachedPart();
 };