diff options
| author | manuel <manuel@nc8430.lan> | 2009-05-14 18:21:15 +0200 |
|---|---|---|
| committer | manuel <manuel@nc8430.lan> | 2009-05-14 18:21:15 +0200 |
| commit | 3563c6dfd0f5f102cb748ecc6ad318601990515e (patch) | |
| tree | 269af83394e84e2a7142dde87fb15dce413aa5c9 /ue3/mycpu/displays.h | |
| parent | ad6ca84f6e93f983de926ae71f31f42325986f61 (diff) | |
| download | ooprog-3563c6dfd0f5f102cb748ecc6ad318601990515e.tar.gz ooprog-3563c6dfd0f5f102cb748ecc6ad318601990515e.tar.bz2 ooprog-3563c6dfd0f5f102cb748ecc6ad318601990515e.zip | |
adding doxygen docs
Diffstat (limited to 'ue3/mycpu/displays.h')
| -rw-r--r-- | ue3/mycpu/displays.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ue3/mycpu/displays.h b/ue3/mycpu/displays.h index 87b9408..d4f3f36 100644 --- a/ue3/mycpu/displays.h +++ b/ue3/mycpu/displays.h | |||
| @@ -25,6 +25,15 @@ class CDisplayWDEZ | |||
| 25 | : CDisplay("wdez") | 25 | : CDisplay("wdez") |
| 26 | {} | 26 | {} |
| 27 | 27 | ||
| 28 | /** | ||
| 29 | * @method display | ||
| 30 | * @brief prints value to display | ||
| 31 | * @param value value to display | ||
| 32 | * @return - | ||
| 33 | * @globalvars none | ||
| 34 | * @exception none | ||
| 35 | * @conditions none | ||
| 36 | */ | ||
| 28 | void display(const CDat &value) | 37 | void display(const CDat &value) |
| 29 | { | 38 | { |
| 30 | std::cout << std::dec << value << std::endl; | 39 | std::cout << std::dec << value << std::endl; |
| @@ -47,6 +56,15 @@ class CDisplayWHEX | |||
| 47 | : CDisplay("whex") | 56 | : CDisplay("whex") |
| 48 | {} | 57 | {} |
| 49 | 58 | ||
| 59 | /** | ||
| 60 | * @method display | ||
| 61 | * @brief prints value to display | ||
| 62 | * @param value value to display | ||
| 63 | * @return - | ||
| 64 | * @globalvars none | ||
| 65 | * @exception none | ||
| 66 | * @conditions none | ||
| 67 | */ | ||
| 50 | void display(const CDat &value) | 68 | void display(const CDat &value) |
| 51 | { | 69 | { |
| 52 | std::cout << std::hex << value << std::endl; | 70 | std::cout << std::hex << value << std::endl; |
