summaryrefslogtreecommitdiffstats
path: root/ue3/mycpu
diff options
context:
space:
mode:
authormanuel <manuel@nc8430.lan>2009-05-14 18:21:15 +0200
committermanuel <manuel@nc8430.lan>2009-05-14 18:21:15 +0200
commit3563c6dfd0f5f102cb748ecc6ad318601990515e (patch)
tree269af83394e84e2a7142dde87fb15dce413aa5c9 /ue3/mycpu
parentad6ca84f6e93f983de926ae71f31f42325986f61 (diff)
downloadooprog-3563c6dfd0f5f102cb748ecc6ad318601990515e.tar.gz
ooprog-3563c6dfd0f5f102cb748ecc6ad318601990515e.tar.bz2
ooprog-3563c6dfd0f5f102cb748ecc6ad318601990515e.zip
adding doxygen docs
Diffstat (limited to 'ue3/mycpu')
-rw-r--r--ue3/mycpu/cdisplay.h2
-rw-r--r--ue3/mycpu/displays.h18
2 files changed, 19 insertions, 1 deletions
diff --git a/ue3/mycpu/cdisplay.h b/ue3/mycpu/cdisplay.h
index 1523f68..82776ee 100644
--- a/ue3/mycpu/cdisplay.h
+++ b/ue3/mycpu/cdisplay.h
@@ -57,7 +57,7 @@ class CDisplayT
57 } 57 }
58 58
59 /** 59 /**
60 * @method getName 60 * @method display
61 * @brief prints value to display 61 * @brief prints value to display
62 * @param value value to display 62 * @param value value to display
63 * @return - 63 * @return -
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;