OpenGEX: fix some review findings.
authorKim Kulling <kim.kulling@googlemail.com>
Tue, 27 Sep 2016 22:06:06 +0000 (00:06 +0200)
committerKim Kulling <kim.kulling@googlemail.com>
Tue, 27 Sep 2016 22:06:06 +0000 (00:06 +0200)
code/OpenGEXExporter.cpp
code/OpenGEXImporter.h
code/OpenGEXStructs.h

index 77a60fd..cf06c9f 100644 (file)
@@ -50,6 +50,10 @@ OpenGEXExporter::OpenGEXExporter() {
 OpenGEXExporter::~OpenGEXExporter() {
 }
 
+bool OpenGEXExporter::exportScene( const char *filename, const aiScene* pScene ) {
+    return true;
+}
+
 #endif // ASSIMP_BUILD_NO_OPENGEX_EXPORTER
 
 } // Namespace OpenGEX
index 101bea9..103b279 100644 (file)
@@ -152,9 +152,8 @@ private:
         VertexContainer();
         ~VertexContainer();
 
-    private:
-        VertexContainer( const VertexContainer & );
-        VertexContainer &operator = ( const VertexContainer & );
+        VertexContainer( const VertexContainer & ) = delete;
+        VertexContainer &operator = ( const VertexContainer & ) = delete;
     };
 
     struct RefInfo {
@@ -170,9 +169,8 @@ private:
         RefInfo( aiNode *node, Type type, std::vector<std::string> &names );
         ~RefInfo();
 
-    private:
-        RefInfo( const RefInfo & );
-        RefInfo &operator = ( const RefInfo & );
+        RefInfo( const RefInfo & ) = delete;
+        RefInfo &operator = ( const RefInfo & ) = delete;
     };
 
     struct ChildInfo {
index 8375979..910b03f 100644 (file)
@@ -113,7 +113,6 @@ struct LightObject {
     bool shadowFlag;
 };
 
-
 struct CameraObject {
     float focalLength;
     float nearDepth;
@@ -146,7 +145,6 @@ struct Name {
     std::string name;
 };
 
-
 struct ObjectRef {
     Object *targetStructure;
 };
@@ -173,7 +171,6 @@ struct BoneIndex {
     unsigned short *arrayStorage;
 };
 
-
 struct BoneWeight {
     int boneWeightCount;
     const float *boneWeightArray;