summaryrefslogtreecommitdiffstats
path: root/ue3/mycpu/cdisplay.h
diff options
context:
space:
mode:
Diffstat (limited to 'ue3/mycpu/cdisplay.h')
-rw-r--r--ue3/mycpu/cdisplay.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/ue3/mycpu/cdisplay.h b/ue3/mycpu/cdisplay.h
new file mode 100644
index 0000000..629ec88
--- /dev/null
+++ b/ue3/mycpu/cdisplay.h
@@ -0,0 +1,48 @@
1/**
2 * @module cdisplay
3 * @author Guenther Neuwirth (0626638), Manuel Mausz (0728348)
4 * @brief TODO
5 * @date 10.05.2009
6 */
7
8#ifndef CDISPLAY_H
9#define CDISPLAY_H #1
10
11/**
12 * @class CDisplay
13 *
14 * TODO
15 */
16class CDisplay
17{
18 public:
19 /**
20 * @method CDisplay
21 * @brief Default ctor
22 * @param -
23 * @return -
24 * @globalvars none
25 * @exception none
26 * @conditions none
27 */
28 CDisplay()
29 {};
30
31 /**
32 * @method ~CDisplay
33 * @brief Default dtor
34 * @param -
35 * @return -
36 * @globalvars none
37 * @exception none
38 * @conditions none
39 */
40 ~CDisplay();
41
42 private:
43 /* members */
44};
45
46#endif
47
48/* vim: set et sw=2 ts=2: */