summaryrefslogtreecommitdiffstats
path: root/ue4/mycpu/cdisplay.h
diff options
context:
space:
mode:
Diffstat (limited to 'ue4/mycpu/cdisplay.h')
-rw-r--r--ue4/mycpu/cdisplay.h21
1 files changed, 7 insertions, 14 deletions
diff --git a/ue4/mycpu/cdisplay.h b/ue4/mycpu/cdisplay.h
index 82776ee..8d15eb9 100644
--- a/ue4/mycpu/cdisplay.h
+++ b/ue4/mycpu/cdisplay.h
@@ -2,23 +2,23 @@
2 * @module cdisplay 2 * @module cdisplay
3 * @author Guenther Neuwirth (0626638), Manuel Mausz (0728348) 3 * @author Guenther Neuwirth (0626638), Manuel Mausz (0728348)
4 * @brief Abstract template class for displays 4 * @brief Abstract template class for displays
5 * @date 10.05.2009 5 * @date 26.05.2009
6 */ 6 */
7 7
8#ifndef CDISPLAY_H 8#ifndef CDISPLAY_H
9#define CDISPLAY_H 1 9#define CDISPLAY_H 1
10 10
11/** 11/**
12 * @class CDisplayT 12 * @class CDisplay
13 * 13 *
14 * Abstract template class for displays 14 * Abstract template class for displays
15 */ 15 */
16template <class T> 16template <class T>
17class CDisplayT 17class CDisplay
18{ 18{
19 public: 19 public:
20 /** 20 /**
21 * @method CDisplayT 21 * @method CDisplay
22 * @brief Default ctor 22 * @brief Default ctor
23 * @param name name of display 23 * @param name name of display
24 * @return - 24 * @return -
@@ -26,12 +26,12 @@ class CDisplayT
26 * @exception none 26 * @exception none
27 * @conditions none 27 * @conditions none
28 */ 28 */
29 CDisplayT(std::string name) 29 CDisplay(std::string name)
30 : m_name(name) 30 : m_name(name)
31 {} 31 {}
32 32
33 /** 33 /**
34 * @method ~CDisplayT 34 * @method ~CDisplay
35 * @brief Default dtor 35 * @brief Default dtor
36 * @param - 36 * @param -
37 * @return - 37 * @return -
@@ -39,7 +39,7 @@ class CDisplayT
39 * @exception none 39 * @exception none
40 * @conditions none 40 * @conditions none
41 */ 41 */
42 virtual ~CDisplayT() 42 virtual ~CDisplay()
43 {} 43 {}
44 44
45 /** 45 /**
@@ -73,13 +73,6 @@ class CDisplayT
73 std::string m_name; 73 std::string m_name;
74}; 74};
75 75
76/**
77 * @class CDisplay
78 *
79 * Memory definition for CCPU
80 */
81typedef CDisplayT<CDat> CDisplay;
82
83#endif 76#endif
84 77
85/* vim: set et sw=2 ts=2: */ 78/* vim: set et sw=2 ts=2: */