diff options
Diffstat (limited to 'ue3/doxygen/cdisplay_8h-source.html')
| -rw-r--r-- | ue3/doxygen/cdisplay_8h-source.html | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/ue3/doxygen/cdisplay_8h-source.html b/ue3/doxygen/cdisplay_8h-source.html new file mode 100644 index 0000000..b8c4ef3 --- /dev/null +++ b/ue3/doxygen/cdisplay_8h-source.html | |||
| @@ -0,0 +1,52 @@ | |||
| 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> | ||
| 2 | <html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> | ||
| 3 | <title>mycpu: mycpu/cdisplay.h Source File</title> | ||
| 4 | <link href="doxygen.css" rel="stylesheet" type="text/css"> | ||
| 5 | <link href="tabs.css" rel="stylesheet" type="text/css"> | ||
| 6 | </head><body> | ||
| 7 | <!-- Generated by Doxygen 1.5.3 --> | ||
| 8 | <div class="tabs"> | ||
| 9 | <ul> | ||
| 10 | <li><a href="index.html"><span>Main Page</span></a></li> | ||
| 11 | <li><a href="namespaces.html"><span>Namespaces</span></a></li> | ||
| 12 | <li><a href="annotated.html"><span>Classes</span></a></li> | ||
| 13 | <li class="current"><a href="files.html"><span>Files</span></a></li> | ||
| 14 | </ul> | ||
| 15 | </div> | ||
| 16 | <h1>mycpu/cdisplay.h</h1><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 | ||
| 17 | <a name="l00008"></a>00008 <span class="preprocessor">#ifndef CDISPLAY_H</span> | ||
| 18 | <a name="l00009"></a>00009 <span class="preprocessor"></span><span class="preprocessor">#define CDISPLAY_H 1</span> | ||
| 19 | <a name="l00010"></a>00010 <span class="preprocessor"></span> | ||
| 20 | <a name="l00016"></a>00016 <span class="keyword">template</span> <<span class="keyword">class</span> T> | ||
| 21 | <a name="l00017"></a><a class="code" href="classCDisplayT.html">00017</a> <span class="keyword">class </span><a class="code" href="classCDisplayT.html">CDisplayT</a> | ||
| 22 | <a name="l00018"></a>00018 { | ||
| 23 | <a name="l00019"></a>00019 <span class="keyword">public</span>: | ||
| 24 | <a name="l00029"></a><a class="code" href="classCDisplayT.html#d65d27ce8533285525788f3cc534ff14">00029</a> <a class="code" href="classCDisplayT.html#d65d27ce8533285525788f3cc534ff14" title="Default ctor.">CDisplayT</a>(std::string name) | ||
| 25 | <a name="l00030"></a>00030 : <a class="code" href="classCDisplayT.html#ba8ab4d4abe2426b266660134efb370f">m_name</a>(name) | ||
| 26 | <a name="l00031"></a>00031 {} | ||
| 27 | <a name="l00032"></a>00032 | ||
| 28 | <a name="l00042"></a><a class="code" href="classCDisplayT.html#edeeab4320b2c3a5b482d216e73e5999">00042</a> <span class="keyword">virtual</span> <a class="code" href="classCDisplayT.html#edeeab4320b2c3a5b482d216e73e5999" title="Default dtor.">~CDisplayT</a>() | ||
| 29 | <a name="l00043"></a>00043 {} | ||
| 30 | <a name="l00044"></a>00044 | ||
| 31 | <a name="l00054"></a><a class="code" href="classCDisplayT.html#32897b9abaec6e9a0e73ae746ab5cec0">00054</a> <span class="keyword">virtual</span> <span class="keyword">const</span> std::string& <a class="code" href="classCDisplayT.html#32897b9abaec6e9a0e73ae746ab5cec0" title="returns name of display">getName</a>() | ||
| 32 | <a name="l00055"></a>00055 { | ||
| 33 | <a name="l00056"></a>00056 <span class="keywordflow">return</span> <a class="code" href="classCDisplayT.html#ba8ab4d4abe2426b266660134efb370f">m_name</a>; | ||
| 34 | <a name="l00057"></a>00057 } | ||
| 35 | <a name="l00058"></a>00058 | ||
| 36 | <a name="l00068"></a>00068 <span class="keyword">virtual</span> <span class="keywordtype">void</span> <a class="code" href="classCDisplayT.html#5a15f96d3d76bdbb2b172c52036859c2" title="prints value to display">display</a>(<span class="keyword">const</span> T &value) = 0; | ||
| 37 | <a name="l00069"></a>00069 | ||
| 38 | <a name="l00070"></a>00070 <span class="keyword">protected</span>: | ||
| 39 | <a name="l00071"></a>00071 <span class="comment">/* members */</span> | ||
| 40 | <a name="l00073"></a><a class="code" href="classCDisplayT.html#ba8ab4d4abe2426b266660134efb370f">00073</a> std::string <a class="code" href="classCDisplayT.html#ba8ab4d4abe2426b266660134efb370f">m_name</a>; | ||
| 41 | <a name="l00074"></a>00074 }; | ||
| 42 | <a name="l00075"></a>00075 | ||
| 43 | <a name="l00081"></a>00081 <span class="keyword">typedef</span> <a class="code" href="classCDisplayT.html">CDisplayT<CDat></a> <a class="code" href="classCDisplay.html">CDisplay</a>; | ||
| 44 | <a name="l00082"></a>00082 | ||
| 45 | <a name="l00083"></a>00083 <span class="preprocessor">#endif</span> | ||
| 46 | <a name="l00084"></a>00084 <span class="preprocessor"></span> | ||
| 47 | <a name="l00085"></a>00085 <span class="comment">/* vim: set et sw=2 ts=2: */</span> | ||
| 48 | </pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Thu May 14 18:19:16 2009 for mycpu by | ||
| 49 | <a href="http://www.doxygen.org/index.html"> | ||
| 50 | <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.3 </small></address> | ||
| 51 | </body> | ||
| 52 | </html> | ||
