Graphite Version 3
An experimental 3D geometry processing program
|
Concrete implementation of LifeCycle. More...
#include <OGF/gom/services/life_cycle.h>
Public Member Functions | |
GenericLifeCycle () | |
GenericLifeCycle constructor. | |
void | construct (Memory::pointer address) override |
Calls the constructor of an object. | |
void | copy_construct (Memory::pointer lhs, Memory::pointer rhs) override |
Copy-Constructs an object at a given address. | |
void | destroy (Memory::pointer address) override |
Calls the destructor of an object. | |
void | assign (Memory::pointer lhs, Memory::pointer rhs) override |
Calls the assignment operator. | |
void | construct_array (Memory::pointer address, index_t nb) override |
Calls the constructor of objects in an array. | |
void | copy_construct_array (Memory::pointer lhs, Memory::pointer rhs, index_t nb) override |
Copy-Constructs an array of object at a given address. | |
void | destroy_array (Memory::pointer address, index_t nb) override |
Destroys an array of object at a given address. | |
void | assign_array (Memory::pointer lhs, Memory::pointer rhs, index_t nb) override |
Copies an array of object at a given address. | |
Memory::pointer | new_object () override |
Dynamically allocates a new object. | |
Memory::pointer | new_object (Memory::pointer rhs) override |
Dynamically allocates a new object. | |
void | delete_object (Memory::pointer address) override |
Deletes an object. | |
Memory::pointer | new_array (index_t nb) override |
Dynamically allocates an array of objects. | |
void | delete_array (Memory::pointer address) override |
Deletes an array of objects. | |
![]() | |
LifeCycle (size_t object_size, bool is_pod=false) | |
LifeCycle constructor. | |
~LifeCycle () override | |
LifeCycle destructor. | |
size_t | object_size () const |
Gets the size of an object. | |
bool | is_pod () const |
Tests whether object is pod (plain ordinary datatype). | |
![]() | |
void | ref () const |
Increments the reference count. | |
void | unref () const |
Decrements the reference count. | |
bool | is_shared () const |
Check if the object is shared. | |
int | nb_refs () const |
Gets the number of references that point to this object. | |
Additional Inherited Members | |
![]() | |
static void | ref (const Counted *counted) |
Increments the reference count. | |
static void | unref (const Counted *counted) |
Decrements the reference count. | |
![]() | |
Counted () | |
Creates a reference counted object. | |
virtual | ~Counted () |
Destroys a reference counted object. | |
Concrete implementation of LifeCycle.
Definition at line 212 of file life_cycle.h.
|
inline |
GenericLifeCycle constructor.
Definition at line 218 of file life_cycle.h.
|
inlineoverridevirtual |
Calls the assignment operator.
[in] | lhs | the address of the left hand side. |
[in] | rhs | the address of the right hand side. |
Implements OGF::LifeCycle.
Definition at line 246 of file life_cycle.h.
|
inlineoverridevirtual |
Copies an array of object at a given address.
[in] | lhs | the address of the left-hand-side objects |
[in] | rhs | the address of the right-hand-side objects to be copied. |
[in] | nb | number of objects |
No memory allocation is done.
Implements OGF::LifeCycle.
Definition at line 287 of file life_cycle.h.
|
inlineoverridevirtual |
Calls the constructor of an object.
[in] | address | the address of the object to be constructed. |
No memory allocation is done.
Implements OGF::LifeCycle.
Definition at line 224 of file life_cycle.h.
|
inlineoverridevirtual |
Calls the constructor of objects in an array.
[in] | address | the address of the object array to be constructed. |
[in] | nb | number of objects. |
No memory allocation is done.
Implements OGF::LifeCycle.
Definition at line 253 of file life_cycle.h.
|
inlineoverridevirtual |
Copy-Constructs an object at a given address.
[in] | lhs | the address where the object should be constructed. |
[in] | rhs | the address of the right-hand-side object to be copied. |
No memory allocation is done.
Implements OGF::LifeCycle.
Definition at line 231 of file life_cycle.h.
|
inlineoverridevirtual |
Copy-Constructs an array of object at a given address.
[in] | lhs | the address of the objects to be constructed. |
[in] | rhs | the address of the right-hand-side objects to be copied. |
[in] | nb | number of objects |
No memory allocation is done.
Implements OGF::LifeCycle.
Definition at line 263 of file life_cycle.h.
|
inlineoverridevirtual |
Deletes an array of objects.
[in] | address | the address of the object array to be deleted. |
Implements OGF::LifeCycle.
Definition at line 328 of file life_cycle.h.
|
inlineoverridevirtual |
Deletes an object.
[in] | address | the address of the object. |
Implements OGF::LifeCycle.
Definition at line 314 of file life_cycle.h.
|
inlineoverridevirtual |
Calls the destructor of an object.
[in] | address | the address of the object to be destructed. |
No memory deallocation is done.
Implements OGF::LifeCycle.
Definition at line 238 of file life_cycle.h.
|
inlineoverridevirtual |
Destroys an array of object at a given address.
[in] | address | the address of the objects to be destroyed. |
[in] | nb | number of objects |
No memory deallocation is done.
Implements OGF::LifeCycle.
Definition at line 276 of file life_cycle.h.
|
inlineoverridevirtual |
Dynamically allocates an array of objects.
[in] | nb | number of objects. |
Implements OGF::LifeCycle.
Definition at line 321 of file life_cycle.h.
|
inlineoverridevirtual |
Dynamically allocates a new object.
Implements OGF::LifeCycle.
Definition at line 300 of file life_cycle.h.
|
inlineoverridevirtual |
Dynamically allocates a new object.
Implements OGF::LifeCycle.
Definition at line 307 of file life_cycle.h.