]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/partcache.cpp
Simplify constructors with C++11
[libs/gltk.git] / source / partcache.cpp
index 3b944572a45abb8874b06a7f4313e569fab123dd..f4c085e5baa47c4230786eba92a2feb50ac8cf50 100644 (file)
@@ -6,22 +6,12 @@ using namespace std;
 namespace Msp {
 namespace GLtk {
 
-CachedPart::CachedPart():
-       part(0),
-       texture(0),
-       mesh(0)
-{ }
-
 CachedPart::~CachedPart()
 {
        delete mesh;
 }
 
 
-PartCache::PartCache():
-       rebuilding(false)
-{ }
-
 void PartCache::begin_rebuild()
 {
        if(rebuilding)