aboutsummaryrefslogtreecommitdiff
path: root/docs/doxygen/nel/a02187.html
blob: faa59d080eb039d9c863619b29588613f6afaaf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>NeL: NLMISC::IRunnable class Reference</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.3.6 -->
<div class="qindex">  <form class="search" action="search.php" method="get">
<a class="qindex" href="main.html">Main&nbsp;Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="namespacemembers.html">Namespace&nbsp;Members</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a>  | <span class="search"><u>S</u>earch&nbsp;for&nbsp;<input class="search" type="text" name="query" value="" size="20" accesskey="s"/></span></form></div>
<h1>NLMISC::IRunnable Class Reference</h1><code>#include &lt;<a class="el" href="a06535.html">thread.h</a>&gt;</code>
<p>
<p>Inheritance diagram for NLMISC::IRunnable:
<p><center><img src="a02187.png" usemap="#NLMISC::IRunnable_map" border="0" alt=""></center>
<map name="NLMISC::IRunnable_map">
<area href="a03537.html" alt="CTimeoutAssertionThread" shape="rect" coords="330,56,650,80">
<area href="a02218.html" alt="NL3D::CAsyncFileManager3D::CIGLoad" shape="rect" coords="330,112,650,136">
<area href="a02219.html" alt="NL3D::CAsyncFileManager3D::CIGLoadUser" shape="rect" coords="330,168,650,192">
<area href="a02304.html" alt="NL3D::CCalcLightableShapeRunnable" shape="rect" coords="330,224,650,248">
<area href="a02752.html" alt="NL3D::CLightRunnable" shape="rect" coords="330,280,650,304">
<area href="a03326.html" alt="NL3D::CRenderZBuffer" shape="rect" coords="330,336,650,360">
<area href="a02186.html" alt="NLAIAGENT::CAgentManagerTimer::CRunTimer" shape="rect" coords="330,392,650,416">
<area href="a02223.html" alt="NLMISC::CAsyncFileManager::CFileLoad" shape="rect" coords="330,448,650,472">
<area href="a02224.html" alt="NLMISC::CAsyncFileManager::CMultipleFileLoad" shape="rect" coords="330,504,650,528">
<area href="a02225.html" alt="NLMISC::CAsyncFileManager::CSignal" shape="rect" coords="330,560,650,584">
<area href="a02216.html" alt="NLMISC::CTaskManager" shape="rect" coords="330,616,650,640">
<area href="a03638.html" alt="NLMISC::CUpdateThread" shape="rect" coords="330,672,650,696">
<area href="a02221.html" alt="NLMISC::IRunnablePos" shape="rect" coords="330,728,650,752">
<area href="a02352.html" alt="NLNET::CClientReceiveTask" shape="rect" coords="330,784,650,808">
<area href="a02770.html" alt="NLNET::CListenTask" shape="rect" coords="330,840,650,864">
<area href="a03366.html" alt="NLNET::CServerReceiveTask" shape="rect" coords="330,896,650,920">
<area href="a02228.html" alt="NLSOUND::CAsyncFileManagerSound::CLoadWavFile" shape="rect" coords="330,952,650,976">
</map>
<hr><a name="_details"></a><h2>Detailed Description</h2>
Thread callback interface. When a thread is created, it will call <a class="el" href="a02187.html#NLMISC_1_1IRunnablePosa1">run()</a> in its attached <a class="el" href="a02187.html">IRunnable</a> interface.<p>
<pre class="fragment"><div><span class="preprocessor">        #include "<a class="code" href="a05112.html">nel/misc/thread.h</a>"</span>

        <span class="keyword">class </span>HelloLoopThread : <span class="keyword">public</span> IRunnable
        {
                <span class="keywordtype">void</span> <a class="code" href="a02187.html#NLMISC_1_1IRunnablePosa1">run</a> ()
                {
                        <span class="keywordflow">while</span>(<span class="keyword">true</span>)     printf(<span class="stringliteral">"Hello World\n"</span>);
                }

        };

        IThread *thread = IThread::create (<span class="keyword">new</span> <a class="code" href="a06977.html">HelloLoopThread</a>);
        thread-&gt;start ();

 *
</div></pre><p>
<dl compact><dt><b>Author:</b></dt><dd>Vianney Lecroart <p>
Nevrax France </dd></dl>
<dl compact><dt><b>Date:</b></dt><dd>2000 </dd></dl>

<p>

<p>
Definition at line <a class="el" href="a06535.html#l00065">65</a> of file <a class="el" href="a06535.html">thread.h</a>.<table border=0 cellpadding=0 cellspacing=0>
<tr><td></td></tr>
<tr><td colspan=2><br><h2>Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>virtual void&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="a02187.html#NLMISC_1_1IRunnablePosa0">getName</a> (std::string &amp;result) const </td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top>virtual void&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="a02187.html#NLMISC_1_1IRunnablePosa1">run</a> ()=0</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top>virtual&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="a02187.html#NLMISC_1_1IRunnablea2">~IRunnable</a> ()</td></tr>

</table>
<hr><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" name="NLMISC_1_1IRunnablea2" doxytag="NLMISC::IRunnable::~IRunnable" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> virtual NLMISC::IRunnable::~<a class="el" href="a02187.html">IRunnable</a> </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap><code> [inline, virtual]</code></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>

<p>
Definition at line <a class="el" href="a06535.html#l00070">70</a> of file <a class="el" href="a06535.html">thread.h</a>.
<p>
<div class="fragment"><pre>00071         {
00072         }
</pre></div>    </td>
  </tr>
</table>
<hr><h2>Member Function Documentation</h2>
<a class="anchor" name="NLMISC_1_1IRunnablePosa0" doxytag="NLMISC::IRunnable::getName" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> virtual void NLMISC::IRunnable::getName </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">std::string &amp;&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>result</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap> const<code> [inline, virtual]</code></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>

<p>
Reimplemented in <a class="el" href="a02220.html#NL3D_1_1CAsyncFileManager3D_1_1CMeshLoada1">NL3D::CAsyncFileManager3D::CMeshLoad</a>, <a class="el" href="a02218.html#NL3D_1_1CAsyncFileManager3D_1_1CIGLoada1">NL3D::CAsyncFileManager3D::CIGLoad</a>, <a class="el" href="a02219.html#NL3D_1_1CAsyncFileManager3D_1_1CIGLoadUsera1">NL3D::CAsyncFileManager3D::CIGLoadUser</a>, <a class="el" href="a02222.html#NL3D_1_1CAsyncFileManager3D_1_1CTextureLoada1">NL3D::CAsyncFileManager3D::CTextureLoad</a>, <a class="el" href="a03752.html#NL3D_1_1CZoneLoadingTaska1">NL3D::CZoneLoadingTask</a>, <a class="el" href="a02593.html#NLPACS_1_1CGlobalRetriever_1_1CLrLoadera1">NLPACS::CGlobalRetriever::CLrLoader</a>, <a class="el" href="a02223.html#NLMISC_1_1CAsyncFileManager_1_1CFileLoada1">NLMISC::CAsyncFileManager::CFileLoad</a>, <a class="el" href="a02224.html#NLMISC_1_1CAsyncFileManager_1_1CMultipleFileLoada1">NLMISC::CAsyncFileManager::CMultipleFileLoad</a>, and <a class="el" href="a02225.html#NLMISC_1_1CAsyncFileManager_1_1CSignala1">NLMISC::CAsyncFileManager::CSignal</a>.
<p>
Definition at line <a class="el" href="a06535.html#l00074">74</a> of file <a class="el" href="a06535.html">thread.h</a>.
<p>
Referenced by <a class="el" href="a06485.html#l00061">NLMISC::CTaskManager::run()</a>.
<p>
<div class="fragment"><pre>00075         {
00076                 result = <span class="stringliteral">"NoName"</span>;
00077         }
</pre></div>    </td>
  </tr>
</table>
<a class="anchor" name="NLMISC_1_1IRunnablePosa1" doxytag="NLMISC::IRunnable::run" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> virtual void NLMISC::IRunnable::run </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap><code> [pure virtual]</code></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>

<p>
Implemented in <a class="el" href="a02220.html#NL3D_1_1CAsyncFileManager3D_1_1CMeshLoada2">NL3D::CAsyncFileManager3D::CMeshLoad</a>, <a class="el" href="a02218.html#NL3D_1_1CAsyncFileManager3D_1_1CIGLoada2">NL3D::CAsyncFileManager3D::CIGLoad</a>, <a class="el" href="a02219.html#NL3D_1_1CAsyncFileManager3D_1_1CIGLoadUsera2">NL3D::CAsyncFileManager3D::CIGLoadUser</a>, <a class="el" href="a02222.html#NL3D_1_1CAsyncFileManager3D_1_1CTextureLoada2">NL3D::CAsyncFileManager3D::CTextureLoad</a>, <a class="el" href="a02752.html#NL3D_1_1CLightRunnablea2">NL3D::CLightRunnable</a>, <a class="el" href="a03326.html#NL3D_1_1CRenderZBuffera2">NL3D::CRenderZBuffer</a>, <a class="el" href="a02304.html#NL3D_1_1CCalcLightableShapeRunnablea2">NL3D::CCalcLightableShapeRunnable</a>, <a class="el" href="a03752.html#NL3D_1_1CZoneLoadingTaska2">NL3D::CZoneLoadingTask</a>, <a class="el" href="a03638.html#NLMISC_1_1CUpdateThreada2">NLMISC::CUpdateThread</a>, <a class="el" href="a02593.html#NLPACS_1_1CGlobalRetriever_1_1CLrLoadera2">NLPACS::CGlobalRetriever::CLrLoader</a>, <a class="el" href="a02228.html#NLSOUND_1_1CAsyncFileManagerSound_1_1CLoadWavFilea2">NLSOUND::CAsyncFileManagerSound::CLoadWavFile</a>, <a class="el" href="a02186.html#NLAIAGENT_1_1CAgentManagerTimer_1_1CRunTimera2">NLAIAGENT::CAgentManagerTimer::CRunTimer</a>, <a class="el" href="a02223.html#NLMISC_1_1CAsyncFileManager_1_1CFileLoada2">NLMISC::CAsyncFileManager::CFileLoad</a>, <a class="el" href="a02224.html#NLMISC_1_1CAsyncFileManager_1_1CMultipleFileLoada2">NLMISC::CAsyncFileManager::CMultipleFileLoad</a>, <a class="el" href="a02225.html#NLMISC_1_1CAsyncFileManager_1_1CSignala2">NLMISC::CAsyncFileManager::CSignal</a>, <a class="el" href="a02216.html#NLMISC_1_1CTaskManagera9">NLMISC::CTaskManager</a>, <a class="el" href="a03537.html#CTimeoutAssertionThreada5">CTimeoutAssertionThread</a>, <a class="el" href="a02352.html#NLNET_1_1CClientReceiveTaska3">NLNET::CClientReceiveTask</a>, <a class="el" href="a02770.html#NLNET_1_1CListenTaska6">NLNET::CListenTask</a>, and <a class="el" href="a03366.html#NLNET_1_1CServerReceiveTaska7">NLNET::CServerReceiveTask</a>.
<p>
Referenced by <a class="el" href="a06485.html#l00061">NLMISC::CTaskManager::run()</a>.    </td>
  </tr>
</table>
<hr>The documentation for this class was generated from the following file:<ul>
<li><a class="el" href="a06535.html">thread.h</a></ul>
<hr size="1"><address style="align: right;"><small>Generated on Tue Mar 16 13:47:04 2004 for NeL by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border=0 > 
</a>1.3.6 </small></address>
</body>
</html>