#include <AllocInterface.h>
Inheritance diagram for TAllocInterface:

Public Member Functions | |
| TAllocInterface (void) | |
| Constructor. | |
| ~TAllocInterface (void) | |
| Destructor. | |
| void * | operator new (size_t size) |
| Operator new. | |
| void * | operator new[] (size_t size) |
| Operator new[]. | |
| void | operator delete (void *ptr) |
| Operator delete. | |
| void | operator delete[] (void *ptr) |
| Operator delete []. | |
Any class derived from this class contains this operators.
There may exists instance of this class, but it does nothing.
Usage:
class TNewClass: public TAllocInterface{...}
*
Definition at line 39 of file AllocInterface.h.
|
|
Constructor.
Definition at line 45 of file AllocInterface.h. |
|
|
Destructor.
Definition at line 48 of file AllocInterface.h. |
|
|
Operator delete.
Definition at line 63 of file AllocInterface.h. References TMemManager::free_mem(). Here is the call graph for this function: ![]() |
|
|
Operator delete [].
Definition at line 67 of file AllocInterface.h. References TMemManager::free_mem(). Here is the call graph for this function: ![]() |
|
|
Operator new.
Definition at line 55 of file AllocInterface.h. References TMemManager::new_mem(). Here is the call graph for this function: ![]() |
|
|
Operator new[].
Definition at line 59 of file AllocInterface.h. References TMemManager::new_mem(). Here is the call graph for this function: ![]() |
1.4.6-NO