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/cdisplay_8h-source.html | 49 +++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 ue4/doxygen/cdisplay_8h-source.html (limited to 'ue4/doxygen/cdisplay_8h-source.html') diff --git a/ue4/doxygen/cdisplay_8h-source.html b/ue4/doxygen/cdisplay_8h-source.html new file mode 100644 index 0000000..1326ef2 --- /dev/null +++ b/ue4/doxygen/cdisplay_8h-source.html @@ -0,0 +1,49 @@ + + +mycpu: mycpu/cdisplay.h Source File + + + + +
+ +
+

mycpu/cdisplay.h

00001 
+00008 #ifndef CDISPLAY_H
+00009 #define CDISPLAY_H 1
+00010 
+00016 template <class T>
+00017 class CDisplay
+00018 {
+00019   public:
+00030     CDisplay(std::string name)
+00031       : m_name(name)
+00032     {}
+00033 
+00044     virtual ~CDisplay()
+00045     {}
+00046 
+00057     virtual const std::string& getName()
+00058     {
+00059       return m_name;
+00060     }
+00061 
+00072     virtual void display(const T &value) = 0;
+00073 
+00074   protected:
+00075     /* members */
+00077     std::string m_name;
+00078 };
+00079 
+00080 #endif
+00081 
+00082 /* 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