summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormanuel <manuel@nc8430.lan>2009-05-28 19:31:22 +0200
committermanuel <manuel@nc8430.lan>2009-05-28 19:31:22 +0200
commit0c146f50d4b1c4d986a21387e1804c4707d8fd6f (patch)
tree2e019685c801740ed9204ab9b4075c49e541c648
parent2f5cadc03bdec8c167119e280c16bbcd2e1694cb (diff)
downloadooprog-0c146f50d4b1c4d986a21387e1804c4707d8fd6f.tar.gz
ooprog-0c146f50d4b1c4d986a21387e1804c4707d8fd6f.tar.bz2
ooprog-0c146f50d4b1c4d986a21387e1804c4707d8fd6f.zip
doxygen doc fix
-rw-r--r--ue4/mycpu/ccpu.h3
-rw-r--r--ue4/mycpu/cdat.h1
-rw-r--r--ue4/mycpu/cdatn.h4
3 files changed, 6 insertions, 2 deletions
diff --git a/ue4/mycpu/ccpu.h b/ue4/mycpu/ccpu.h
index 7257a87..f005b74 100644
--- a/ue4/mycpu/ccpu.h
+++ b/ue4/mycpu/ccpu.h
@@ -64,7 +64,8 @@ class CCPU
64 /** 64 /**
65 * @method CCPU 65 * @method CCPU
66 * @brief Default ctor 66 * @brief Default ctor
67 * @param cnt number of registers to allocate for this cpu 67 * @param cnt number of registers to allocate for this cpu
68 * @param datatype reference instance of datatype to copy from
68 * @return - 69 * @return -
69 * @globalvars none 70 * @globalvars none
70 * @exception none 71 * @exception none
diff --git a/ue4/mycpu/cdat.h b/ue4/mycpu/cdat.h
index a5f2ce0..abea425 100644
--- a/ue4/mycpu/cdat.h
+++ b/ue4/mycpu/cdat.h
@@ -331,6 +331,7 @@ class CDat
331 331
332 protected: 332 protected:
333 /* members */ 333 /* members */
334 /** internal value of datatype */
334 T m_value; 335 T m_value;
335}; 336};
336 337
diff --git a/ue4/mycpu/cdatn.h b/ue4/mycpu/cdatn.h
index 32d8d7b..3d21369 100644
--- a/ue4/mycpu/cdatn.h
+++ b/ue4/mycpu/cdatn.h
@@ -139,7 +139,7 @@ class CDatN
139 /** 139 /**
140 * @method operator= 140 * @method operator=
141 * @brief implementation of operator = 141 * @brief implementation of operator =
142 * @param x reference to int 142 * @param newval reference to int
143 * @return refecence to int 143 * @return refecence to int
144 * @globalvars none 144 * @globalvars none
145 * @exception none 145 * @exception none
@@ -373,7 +373,9 @@ class CDatN
373 } 373 }
374 374
375 /* members */ 375 /* members */
376 /** internal value of datatype */
376 int m_value; 377 int m_value;
378 /** width of datatype */
377 unsigned m_width; 379 unsigned m_width;
378}; 380};
379 381