diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-11-15 21:32:16 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-11-15 21:32:16 +0000 |
commit | 60704e94fd8cea25a2b2947710a7ba3b675acb33 (patch) | |
tree | 2c05911cadd5b055290b9f93ac6f02314ed4c18c /src/entities/bu-class | |
parent | bc55304f4fa990901000d9077e4efb23ee04c10f (diff) | |
download | libbu++-60704e94fd8cea25a2b2947710a7ba3b675acb33.tar.gz libbu++-60704e94fd8cea25a2b2947710a7ba3b675acb33.tar.bz2 libbu++-60704e94fd8cea25a2b2947710a7ba3b675acb33.tar.xz libbu++-60704e94fd8cea25a2b2947710a7ba3b675acb33.zip |
Added liscense info at the front of many, many files. Debating the old files.
Diffstat (limited to 'src/entities/bu-class')
-rw-r--r-- | src/entities/bu-class | 18 |
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 <stdint.h> | 18 | #include <stdint.h> |
@@ -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 | ||
38 | using namespace Bu; | 52 | using namespace Bu; |
39 | 53 | ||