00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #include "typedObject.h"
00016
00017 TypeHandle TypedObject::_type_handle;
00018
00019
00020
00021
00022
00023
00024 TypedObject::
00025 ~TypedObject() {
00026 }
00027
00028
00029
00030
00031
00032
00033
00034 TypeHandle TypedObject::
00035 get_type() const {
00036
00037
00038
00039 cerr
00040 << "TypedObject::get_type() called!\n";
00041 return _type_handle;
00042 }
00043
00044
00045
00046
00047
00048
00049
00050
00051 void TypedObject::
00052 init_type() {
00053 register_type(_type_handle, "TypedObject");
00054 }