The class that stores the values of the variables. More...
#include <Scope.hpp>
Public Member Functions | |
virtual | ~VarHashEntry () |
virtual const TYPE & | getValue () const =0 |
Gets the value of the variable (overload in derived classes for special behaviour) More... | |
virtual void | setValue (const TYPE &value)=0 |
Sets the value of the variable (overload in derived classes for special behaviour) More... | |
![]() | |
void * | operator new (size_t size) |
This method overrides operator new. More... | |
void * | operator new (size_t size, MemoryManager *memMgr) |
This method defines a custom operator new, that will use the provided memory manager to perform the allocation. More... | |
void * | operator new (size_t size, void *ptr) |
This method overrides placement operator new. More... | |
void | operator delete (void *p) |
This method overrides operator delete. More... | |
void | operator delete (void *p, MemoryManager *memMgr) |
This method provides a matching delete for the custom operator new. More... | |
void | operator delete (void *p, void *ptr) |
This method provides a matching delete for the placement new. More... | |
Additional Inherited Members | |
![]() | |
XMemory () | |
Protected default constructor. More... | |
The class that stores the values of the variables.
|
inlinevirtual |
References VarHashEntry< TYPE >::getValue(), and VarHashEntry< TYPE >::setValue().
|
pure virtual |
Gets the value of the variable (overload in derived classes for special behaviour)
Referenced by VarHashEntry< TYPE >::~VarHashEntry().
|
pure virtual |
Sets the value of the variable (overload in derived classes for special behaviour)
Referenced by VarHashEntry< TYPE >::~VarHashEntry().