Panda3D
mainThread.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 mainThread.h
10  * @author drose
11  * @date 2006-01-15
12  */
13 
14 #ifndef MAINTHREAD_H
15 #define MAINTHREAD_H
16 
17 #include "pandabase.h"
18 #include "thread.h"
19 
20 /**
21  * The special "main thread" class. There is one instance of these in the
22  * world, and it is returned by Thread::get_main_thread().
23  */
24 class EXPCL_PANDA_PIPELINE MainThread : public Thread {
25 private:
26  MainThread();
27  virtual void thread_main();
28 
29 PUBLISHED:
30  static TypeHandle get_class_type() {
31  return _type_handle;
32  }
33 public:
34  static void init_type() {
35  Thread::init_type();
36  register_type(_type_handle, "MainThread",
37  Thread::get_class_type());
38  }
39  virtual TypeHandle get_type() const {
40  return get_class_type();
41  }
42  virtual TypeHandle force_init_type() {init_type(); return get_class_type();}
43 
44 private:
45  static TypeHandle _type_handle;
46 
47  friend class Thread;
48 };
49 
50 #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 "main thread" class.
Definition: mainThread.h:24
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