From 0ea5fc66924303d1bf73ba283a383e2aadee02f2 Mon Sep 17 00:00:00 2001 From: neodarz Date: Sat, 11 Aug 2018 20:21:34 +0200 Subject: Initial commit --- .../nel/tools_3d_tile_edit_thread_h-source.html | 110 +++++++++++++++++++++ 1 file changed, 110 insertions(+) create mode 100644 docs/doxygen/nel/tools_3d_tile_edit_thread_h-source.html (limited to 'docs/doxygen/nel/tools_3d_tile_edit_thread_h-source.html') diff --git a/docs/doxygen/nel/tools_3d_tile_edit_thread_h-source.html b/docs/doxygen/nel/tools_3d_tile_edit_thread_h-source.html new file mode 100644 index 00000000..8fe56015 --- /dev/null +++ b/docs/doxygen/nel/tools_3d_tile_edit_thread_h-source.html @@ -0,0 +1,110 @@ + + + + nevrax.org : docs + + + + + + + + + + + + + + +
# Home   # nevrax.com   
+ + + + +
Nevrax
+ + + + + + + + + + +
+ + +
+ Nevrax.org
+ + + + + + + +
#News
#Mailing-list
#Documentation
#CVS
#Bugs
#License
+
+ + +
+ + +
+Docs + +
+  + + + + + +
Documentation 
+ +
+Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Related Pages   Search  
+

thread.h

Go to the documentation of this file.
00001 
+00003 
+00004 #ifndef header_thread
+00005 #define header_thread
+00006 
+00007 class CL_Runnable
+00008 //: Thread callback interface.
+00009 // When a thread is created, it will call run() in its attached CL_Runnable interface.
+00010 {
+00011 public:
+00012         virtual void run()=0;
+00013         // Called when a thread is run.
+00014 };
+00015 
+00016 class CL_Thread
+00017 {
+00018 public:
+00019         static CL_Thread *create(CL_Runnable *runnable);
+00020         // Create a thread that uses the CL_Runnable callback interface.
+00022 
+00023         static CL_Thread *create(int (*func)(void*), void* value);
+00024         // Create a thread that calls the function specified, with the value specified.
+00027         
+00028         virtual ~CL_Thread () {;}
+00029         
+00030         virtual void start()=0;
+00031         // Starts the thread.
+00032 
+00033         virtual void terminate()=0;
+00034         // Terminate the thread. (use with caution under win98)
+00035 
+00036         virtual void wait()=0;
+00037         // Wait until the thread finishes its execution.
+00038 };
+00039 
+00040 #endif
+
+ + +
                                                                                                                                                                    +
+ + -- cgit v1.2.1