Panda3D
externalThread.h
Go to the documentation of this file.
1 /**
2  * PANDA 3D SOFTWARE
3  * Copyright (c) Carnegie Mellon University. All rights reserved.
4  *
5  * All use of this software is subject to the terms of the revised BSD
6  * license. You should have received a copy of this license along
7  * with this source code in a file named "LICENSE."
8  *
9  * @file externalThread.h
10  * @author drose
11  * @date 2006-01-30
12  */
13 
14 #ifndef EXTERNALTHREAD_H
15 #define EXTERNALTHREAD_H
16 
17 #include "pandabase.h"
18 #include "thread.h"
19 
20 /**
21  * The special "external thread" class. There is one instance of these in the
22  * world, and it is returned by Thread::get_external_thread().
23  */
24 class EXPCL_PANDA_PIPELINE ExternalThread : public Thread {
25 private:
27  ExternalThread(const std::string &name, const std::string &sync_name);
28  virtual void thread_main();
29 
30 PUBLISHED:
31  static TypeHandle get_class_type() {
32  return _type_handle;
33  }
34 public:
35  static void init_type() {
36  Thread::init_type();
37  register_type(_type_handle, "ExternalThread",
38  Thread::get_class_type());
39  }
40  virtual TypeHandle get_type() const {
41  return get_class_type();
42  }
43  virtual TypeHandle force_init_type() {init_type(); return get_class_type();}
44 
45 private:
46  static TypeHandle _type_handle;
47 
48  friend class Thread;
49 };
50 
51 #endif
void register_type(TypeHandle &type_handle, const std::string &name)
This inline function is just a convenient way to call TypeRegistry::register_type(),...
Definition: register_type.I:22
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
The special "external thread" class.
A thread; that is, a lightweight process.
Definition: thread.h:46
TypeHandle is the identifier used to differentiate C++ class types.
Definition: typeHandle.h:81