summaryrefslogtreecommitdiffstats
path: root/ue3/mycpu/cdat.h
diff options
context:
space:
mode:
Diffstat (limited to 'ue3/mycpu/cdat.h')
-rw-r--r--ue3/mycpu/cdat.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/ue3/mycpu/cdat.h b/ue3/mycpu/cdat.h
index dc8a07c..3fda572 100644
--- a/ue3/mycpu/cdat.h
+++ b/ue3/mycpu/cdat.h
@@ -295,6 +295,20 @@ class CDatT
295 return stream; 295 return stream;
296 } 296 }
297 297
298 /**
299 * @method getTypeValue
300 * @brief returns value as type T
301 * @param -
302 * @return m_value
303 * @globalvars none
304 * @exception none
305 * @conditions none
306 */
307 T& getTypeValue()
308 {
309 return m_value;
310 }
311
298 private: 312 private:
299 /* members */ 313 /* members */
300 T m_value; 314 T m_value;