summaryrefslogtreecommitdiffstats
path: root/1.4.0/dom/codeGen/1.5/tpl/tpl-dot-h.php
blob: 6d14e57c1b6f7ad89e9ac608efe22fe3ab57671e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?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 __<?= $_globals['prefix'] . ucfirst( $bag['element_name'] ) ?>_h__
#define __<?= $_globals['prefix'] . ucfirst( $bag['element_name'] ) ?>_h__

#include <dae/daeDocument.h>
#include <<?= $_globals['prefix'] . '/' . $_globals['prefix'] ?>Types.h>
#include <<?= $_globals['prefix'] . '/' . $_globals['prefix'] ?>Elements.h>

<?php
global $includeList;
$includeList = array();
print applyTemplate( 'INCLUDES', $bag ) ?>
class DAE;

<?= applyTemplate( 'CLASS', $bag ) ?>

#endif