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:
authorCampbell Barton <ideasman42@gmail.com>2019-12-10 03:06:38 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-12-10 03:06:38 +0300
commit00e9241d49d122052038295db9005542d25e4454 (patch)
treeadd386511228648b8fb308363a62c60d3229ff6f /source/blender/collada/AnimationClipExporter.h
parentcc70f7d048be1970b80e9493b269b331e8adee54 (diff)
Cleanup: header guards
Diffstat (limited to 'source/blender/collada/AnimationClipExporter.h')
-rw-r--r--source/blender/collada/AnimationClipExporter.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/collada/AnimationClipExporter.h b/source/blender/collada/AnimationClipExporter.h
index ead894dc941..25c69fe6b93 100644
--- a/source/blender/collada/AnimationClipExporter.h
+++ b/source/blender/collada/AnimationClipExporter.h
@@ -14,6 +14,9 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
+#ifndef __ANIMATIONCLIPEXPORTER_H__
+#define __ANIMATIONCLIPEXPORTER_H__
+
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
@@ -44,3 +47,5 @@ class AnimationClipExporter : COLLADASW::LibraryAnimationClips {
void exportAnimationClips(Scene *sce);
};
+
+#endif /* __ANIMATIONCLIPEXPORTER_H__ */