|
| SampleClass (const SampleClass ©) |
|
virtual TypeHandle | force_init_type () |
|
int | get_flag () const |
| A few sentences describing the purpose of flag, the legal values it may be set to, and the implications of setting it to certain values. More...
|
|
virtual TypeHandle | get_type () const |
|
int | public_method () |
| A few sentences describing what public_method is supposed to do and why you'd want to call it. More...
|
|
void | set_flag (int flag) |
| A few sentences describing the purpose of flag, the legal values it may be set to, and the implications of setting it to certain values. More...
|
|
| TypedObject (const TypedObject ©)=default |
|
TypedObject * | as_typed_object () |
| Returns the object, upcast (if necessary) to a TypedObject pointer. More...
|
|
const TypedObject * | as_typed_object () const |
| Returns the object, upcast (if necessary) to a TypedObject pointer. More...
|
|
int | get_best_parent_from_Set (const std::set< int > &) const |
|
int | get_type_index () const |
| Returns the internal index number associated with this object's TypeHandle, a unique number for each different type. More...
|
|
bool | is_exact_type (TypeHandle handle) const |
| Returns true if the current object is the indicated type exactly. More...
|
|
bool | is_of_type (TypeHandle handle) const |
| Returns true if the current object is or derives from the indicated type. More...
|
|
TypedObject & | operator= (const TypedObject ©)=default |
|
void | operator delete (void *, void *) |
|
void | operator delete (void *ptr) |
|
void | operator delete[] (void *, void *) |
|
void | operator delete[] (void *ptr) |
|
void * | operator new (size_t size) |
|
void * | operator new (size_t size, void *ptr) |
|
void * | operator new[] (size_t size) |
|
void * | operator new[] (size_t size, void *ptr) |
|
A basic description of the function and purpose of SampleClass.
Note that class names are generally mixed case, no underscore, beginning with a capital letter.
Definition at line 37 of file sampleClass.h.