aboutsummaryrefslogtreecommitdiff
path: root/src/entities
diff options
context:
space:
mode:
Diffstat (limited to 'src/entities')
-rw-r--r--src/entities/bu-class18
1 files changed, 16 insertions, 2 deletions
diff --git a/src/entities/bu-class b/src/entities/bu-class
index 7b25291..abe503b 100644
--- a/src/entities/bu-class
+++ b/src/entities/bu-class
@@ -5,7 +5,14 @@
5 <file 5 <file
6 name="header" 6 name="header"
7 filename="{=name:%tolower}.h" 7 filename="{=name:%tolower}.h"
8>#ifndef {=name:%uccsplit:%toupper}_H 8>/*
9 * Copyright (C) 2007 Xagasoft, All rights reserved.
10 *
11 * This file is part of the libbu++ library and is released under the
12 * terms of the license contained in the file LICENSE.
13 */
14
15#ifndef {=name:%uccsplit:%toupper}_H
9#define {=name:%uccsplit:%toupper}_H 16#define {=name:%uccsplit:%toupper}_H
10 17
11#include &lt;stdint.h&gt; 18#include &lt;stdint.h&gt;
@@ -33,7 +40,14 @@
33 <file 40 <file
34 name="source" 41 name="source"
35 filename="{=name:%tolower}.cpp" 42 filename="{=name:%tolower}.cpp"
36>#include "bu/{=name:%tolower}.h" 43 >/*
44 * Copyright (C) 2007 Xagasoft, All rights reserved.
45 *
46 * This file is part of the libbu++ library and is released under the
47 * terms of the license contained in the file LICENSE.
48 */
49
50#include "bu/{=name:%tolower}.h"
37 51
38using namespace Bu; 52using namespace Bu;
39 53