summaryrefslogtreecommitdiffstats
path: root/1.4.0/dom/codeGen/1.4/tpl/tpl-constants.php
diff options
context:
space:
mode:
Diffstat (limited to '1.4.0/dom/codeGen/1.4/tpl/tpl-constants.php')
-rw-r--r--1.4.0/dom/codeGen/1.4/tpl/tpl-constants.php42
1 files changed, 42 insertions, 0 deletions
diff --git a/1.4.0/dom/codeGen/1.4/tpl/tpl-constants.php b/1.4.0/dom/codeGen/1.4/tpl/tpl-constants.php
new file mode 100644
index 0000000..199e849
--- /dev/null
+++ b/1.4.0/dom/codeGen/1.4/tpl/tpl-constants.php
@@ -0,0 +1,42 @@
+<?php
+/*
+* Copyright 2006 Sony Computer Entertainment Inc.
+*
+* Licensed under the MIT Open Source License, for details please see license.txt or the website
+* http://www.opensource.org/licenses/mit-license.php
+*
+*/
+
+if ( $_globals['copyright'] ) {
+print $_globals['copyright_text'];
+}
+?>
+#ifndef __DOM_CONSTANTS_H__
+#define __DOM_CONSTANTS_H__
+
+#include <dae/daeDomTypes.h>
+
+<?php
+ foreach ($bag as $name => $val ) {
+ if ( is_int($name) ) {
+ print $val;
+ continue;
+ }
+ print "extern DLLSPEC daeString ". $name .";\n";
+ }
+ print "\n";
+
+ foreach ($_globals['elementTypes'] as $num => $val )
+ {
+ print "extern DLLSPEC daeString COLLADA_TYPE_". getUniqueName($val, $_globals['elementTypes']) .";\n";
+ }
+ print "\n";
+
+ foreach ($_globals['elementNames'] as $num => $val )
+ {
+ print "extern DLLSPEC daeString COLLADA_ELEMENT_". getUniqueName($val, $_globals['elementNames']) .";\n";
+ }
+?>
+
+#endif //__DOM_CONSTANTS_H__
+