diff options
author | Mike Buland <eichlan@xagasoft.com> | 2009-02-11 05:29:41 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2009-02-11 05:29:41 +0000 |
commit | f4b191f0ea396b58465bfba40749977780a3af58 (patch) | |
tree | 891490e91ab3b67524be67b2b71c85d84fd2f92a /src/entities | |
parent | 292ae9453e7fdb2f1023ed9dfc99cbcd751f8b90 (diff) | |
download | libbu++-f4b191f0ea396b58465bfba40749977780a3af58.tar.gz libbu++-f4b191f0ea396b58465bfba40749977780a3af58.tar.bz2 libbu++-f4b191f0ea396b58465bfba40749977780a3af58.tar.xz libbu++-f4b191f0ea396b58465bfba40749977780a3af58.zip |
Just removing some things that are cluttering up the source tree.
Diffstat (limited to 'src/entities')
-rw-r--r-- | src/entities/bu-class | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/src/entities/bu-class b/src/entities/bu-class deleted file mode 100644 index b0dc8b0..0000000 --- a/src/entities/bu-class +++ /dev/null | |||
@@ -1,62 +0,0 @@ | |||
1 | <?xml version="1.1" ?> | ||
2 | <entity desc="Basic cpp class, with optional parent class. (.cpp+.h)"> | ||
3 | <param name="name" required="yes" desc="Name of the class"/> | ||
4 | <param name="parent" required="no" desc="Name of the parent class"/> | ||
5 | <file | ||
6 | name="header" | ||
7 | filename="{=name:%tolower}.h" | ||
8 | >/* | ||
9 | * Copyright (C) 2007-2008 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 | ||
16 | #define {=name:%uccsplit:%toupper}_H | ||
17 | |||
18 | #include <stdint.h> | ||
19 | |||
20 | {?parent:"#include \"bu/{=parent:%tolower}.h\" | ||
21 | |||
22 | "}namespace Bu | ||
23 | { | ||
24 | /** | ||
25 | * | ||
26 | */ | ||
27 | class {=name}{?parent:" : public {=parent}"} | ||
28 | { | ||
29 | public: | ||
30 | {=name}(); | ||
31 | virtual ~{=name}(); | ||
32 | |||
33 | private: | ||
34 | |||
35 | }; | ||
36 | } | ||
37 | |||
38 | #endif | ||
39 | </file> | ||
40 | <file | ||
41 | name="source" | ||
42 | filename="{=name:%tolower}.cpp" | ||
43 | >/* | ||
44 | * Copyright (C) 2007-2008 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" | ||
51 | |||
52 | using namespace Bu; | ||
53 | |||
54 | Bu::{=name}::{=name}() | ||
55 | { | ||
56 | } | ||
57 | |||
58 | Bu::{=name}::~{=name}() | ||
59 | { | ||
60 | } | ||
61 | </file> | ||
62 | </entity> | ||