diff options
| author | manuel <manuel@nc8430.lan> | 2009-05-13 16:55:17 +0200 |
|---|---|---|
| committer | manuel <manuel@nc8430.lan> | 2009-05-13 16:55:17 +0200 |
| commit | 3c6f886d5a8bfd36c796b963d6e3178ad9577742 (patch) | |
| tree | 7a65d184e66c810777d18ea208931910c91b7e43 /ue3/mycpu/cdisplay.h | |
| parent | 431bbac5a99abbccf33500e22aa353ec792eff94 (diff) | |
| download | ooprog-3c6f886d5a8bfd36c796b963d6e3178ad9577742.tar.gz ooprog-3c6f886d5a8bfd36c796b963d6e3178ad9577742.tar.bz2 ooprog-3c6f886d5a8bfd36c796b963d6e3178ad9577742.zip | |
* added documentation (no more TODOs)
* added testsuite + testcase
* used copyctor instead of assign operator more often
Diffstat (limited to 'ue3/mycpu/cdisplay.h')
| -rw-r--r-- | ue3/mycpu/cdisplay.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/ue3/mycpu/cdisplay.h b/ue3/mycpu/cdisplay.h index ed9b84d..c2a84a6 100644 --- a/ue3/mycpu/cdisplay.h +++ b/ue3/mycpu/cdisplay.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /** | 1 | /** |
| 2 | * @module cdisplay | 2 | * @module cdisplay |
| 3 | * @author Guenther Neuwirth (0626638), Manuel Mausz (0728348) | 3 | * @author Guenther Neuwirth (0626638), Manuel Mausz (0728348) |
| 4 | * @brief TODO | 4 | * @brief Abstract class for displays |
| 5 | * @date 10.05.2009 | 5 | * @date 10.05.2009 |
| 6 | */ | 6 | */ |
| 7 | 7 | ||
| @@ -11,7 +11,7 @@ | |||
| 11 | /** | 11 | /** |
| 12 | * @class CDisplay | 12 | * @class CDisplay |
| 13 | * | 13 | * |
| 14 | * TODO | 14 | * Abstract class for displays |
| 15 | */ | 15 | */ |
| 16 | class CDisplay | 16 | class CDisplay |
| 17 | { | 17 | { |
| @@ -26,9 +26,8 @@ class CDisplay | |||
| 26 | * @conditions none | 26 | * @conditions none |
| 27 | */ | 27 | */ |
| 28 | CDisplay(std::string name) | 28 | CDisplay(std::string name) |
| 29 | { | 29 | : m_name(name) |
| 30 | m_name = name; | 30 | {} |
| 31 | } | ||
| 32 | 31 | ||
| 33 | /** | 32 | /** |
| 34 | * @method ~CDisplay | 33 | * @method ~CDisplay |
