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-17 03:42:19 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-12-17 03:42:19 +0300
commit23940ff1e1beef735cdb89da53aeb14684284825 (patch)
treea23317ae434e915e2b723418703c770d6e366389 /source/blender/collada
parent7f00b3a7113f56ab3f18468d3a6058697d09571a (diff)
Cleanup: conform header guards to Blender's style
Diffstat (limited to 'source/blender/collada')
-rw-r--r--source/blender/collada/ExtraTags.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/collada/ExtraTags.h b/source/blender/collada/ExtraTags.h
index 2d827159af8..9191182c757 100644
--- a/source/blender/collada/ExtraTags.h
+++ b/source/blender/collada/ExtraTags.h
@@ -18,6 +18,9 @@
* \ingroup collada
*/
+#ifndef __EXTRATAGS_H__
+#define __EXTRATAGS_H__
+
#include <string>
#include <map>
#include <vector>
@@ -70,3 +73,5 @@ class ExtraTags {
/** Get text data for tag as a string. */
std::string asString(std::string tag, bool *ok);
};
+
+#endif /* __EXTRATAGS_H__ */