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:
authorGaia Clary <gaia.clary@machinimatrix.org>2018-02-28 17:53:00 +0300
committerGaia Clary <gaia.clary@machinimatrix.org>2018-02-28 18:05:28 +0300
commit01f732d97b2196b3569ee6f9a7ff66f51cc12029 (patch)
treec8cb3f833e4f30532d66ff1ed33ec64ea6397191 /source/blender/collada/ImportSettings.h
parent8b8e16dc2cedd03d0a22f89c9165c76722cc706a (diff)
Collada: Moved structure definitions for export settings to the exportSettings.h Also make typedefs for import/export structures.
Diffstat (limited to 'source/blender/collada/ImportSettings.h')
-rw-r--r--source/blender/collada/ImportSettings.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/source/blender/collada/ImportSettings.h b/source/blender/collada/ImportSettings.h
index 4a2d4e8046a..fb4277b048f 100644
--- a/source/blender/collada/ImportSettings.h
+++ b/source/blender/collada/ImportSettings.h
@@ -27,10 +27,7 @@
#ifndef __IMPORTSETTINGS_H__
#define __IMPORTSETTINGS_H__
-#include "collada.h"
-
-struct ImportSettings {
-public:
+typedef struct ImportSettings {
bool import_units;
bool find_chains;
bool auto_connect;
@@ -38,6 +35,6 @@ public:
int min_chain_length;
char *filepath;
bool keep_bind_info;
-};
+} ImportSettings;
#endif