Reorganisation of COLLADA import code. Classes have been split into their own files.

No functional changes.

Where necessary extern "C" {} blocks have been added.
This commit is contained in:
Nathan Letwory
2010-10-05 00:05:14 +00:00
parent 63b4c93e44
commit 82209cdc86
35 changed files with 4096 additions and 3236 deletions

View File

@@ -21,6 +21,10 @@
*
* ***** END GPL LICENSE BLOCK *****
*/
#ifndef __DOCUMENTEXPORTER_H__
#define __DOCUMENTEXPORTER_H__
struct Scene;
class DocumentExporter
@@ -29,3 +33,5 @@ class DocumentExporter
void exportCurrentScene(Scene *sce, const char* filename);
void exportScenes(const char* filename);
};
#endif