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

@@ -28,6 +28,10 @@
#ifndef ED_OBJECT_H
#define ED_OBJECT_H
#ifdef __cplusplus
extern "C" {
#endif
struct Base;
struct bConstraint;
struct bContext;
@@ -141,5 +145,9 @@ int ED_object_modifier_convert(struct ReportList *reports, struct Main *bmain, s
int ED_object_modifier_apply(struct ReportList *reports, struct Scene *scene, struct Object *ob, struct ModifierData *md, int mode);
int ED_object_modifier_copy(struct ReportList *reports, struct Object *ob, struct ModifierData *md);
#ifdef __cplusplus
}
#endif
#endif /* ED_OBJECT_H */