Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/collada/ExportSettings.h')
-rw-r--r--source/blender/collada/ExportSettings.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/source/blender/collada/ExportSettings.h b/source/blender/collada/ExportSettings.h
index a6ae29bf2b2..e856eefab99 100644
--- a/source/blender/collada/ExportSettings.h
+++ b/source/blender/collada/ExportSettings.h
@@ -24,6 +24,10 @@
* \ingroup collada
*/
+extern "C" {
+#include "BLI_linklist.h"
+}
+
#ifndef __EXPORTSETTINGS_H__
#define __EXPORTSETTINGS_H__
@@ -33,10 +37,12 @@ struct ExportSettings
bool selected;
bool apply_modifiers;
bool include_armatures;
- bool include_bone_children;
+ bool include_children;
bool use_object_instantiation;
+ bool sort_by_name;
bool second_life;
char *filepath;
+ LinkNode *export_set;
};
#endif