From dcd1c9a6e1fbb7462db67a15b9e0dfd22d4f6a4f Mon Sep 17 00:00:00 2001 From: manuel Date: Sat, 30 May 2009 16:32:43 +0200 Subject: adding doxygen --- ue4/doxygen/cdatset_8h-source.html | 56 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 ue4/doxygen/cdatset_8h-source.html (limited to 'ue4/doxygen/cdatset_8h-source.html') diff --git a/ue4/doxygen/cdatset_8h-source.html b/ue4/doxygen/cdatset_8h-source.html new file mode 100644 index 0000000..ee161cf --- /dev/null +++ b/ue4/doxygen/cdatset_8h-source.html @@ -0,0 +1,56 @@ + + +mycpu: mycpu/cdatset.h Source File + + + + +
+ +
+

mycpu/cdatset.h

00001 
+00008 #ifndef CDATSET_H
+00009 #define CDATSET_H 1
+00010 
+00011 #include <iostream>
+00012 #include "cdat.h"
+00013 
+00019 class CDatSet
+00020   : public CDat<int>, public boost::operators<CDatSet>
+00021 {
+00022   public:
+00033     CDatSet()
+00034     {}
+00035 
+00046     CDatSet(const int newval)
+00047       : CDat<int>(newval)
+00048     {}
+00049 
+00061     friend std::istream& operator>>(std::istream & stream, CDatSet& cdat)
+00062     {
+00063       unsigned count = 0;
+00064       while(stream.good() && !stream.eof())
+00065       {
+00066         int val = stream.get();
+00067         if (val != 'o')
+00068           break;
+00069         ++count;
+00070       }
+00071       stream.clear();
+00072       cdat.m_value = count;
+00073       return stream;
+00074     }
+00075 };
+00076 
+00077 #endif
+00078 
+00079 /* vim: set et sw=2 ts=2: */
+

Generated on Sat May 30 16:32:35 2009 for mycpu by  + +doxygen 1.5.3
+ + -- cgit v1.2.3