aboutsummaryrefslogtreecommitdiff
path: root/src/entities/bu-class
blob: b0dc8b0b24741bf614a02483d7f99e45d3447560 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?xml version="1.1" ?>
<entity desc="Basic cpp class, with optional parent class. (.cpp+.h)">
	<param name="name" required="yes" desc="Name of the class"/>
	<param name="parent" required="no" desc="Name of the parent class"/>
	<file
		name="header"
		filename="{=name:%tolower}.h"
>/*
 * Copyright (C) 2007-2008 Xagasoft, All rights reserved.
 *
 * This file is part of the libbu++ library and is released under the
 * terms of the license contained in the file LICENSE.
 */

#ifndef {=name:%uccsplit:%toupper}_H
#define {=name:%uccsplit:%toupper}_H

#include &lt;stdint.h&gt;

{?parent:"#include \"bu/{=parent:%tolower}.h\"

"}namespace Bu
{
	/**
	 *
	 */
	class {=name}{?parent:" : public {=parent}"}
	{
	public:
		{=name}();
		virtual ~{=name}();

	private:

	};
}

#endif
</file>
	<file
		name="source"
		filename="{=name:%tolower}.cpp"
	>/*
 * Copyright (C) 2007-2008 Xagasoft, All rights reserved.
 *
 * This file is part of the libbu++ library and is released under the
 * terms of the license contained in the file LICENSE.
 */

#include "bu/{=name:%tolower}.h"

using namespace Bu;

Bu::{=name}::{=name}()
{
}

Bu::{=name}::~{=name}()
{
}
</file>
</entity>