Go to the source code of this file.
|
| template<class ObjectType > |
| using | uLang::TSPtr = TSPtrG< ObjectType, true, CHeapRawAllocator > |
| | Shared pointer that allocates object on the heap.
|
| |
| template<class ObjectType > |
| using | uLang::TSRef = TSPtrG< ObjectType, false, CHeapRawAllocator > |
| | Shared reference that allocates object on the heap.
|
| |
| template<class ObjectType > |
| using | uLang::TSPtrA = TSPtrG< ObjectType, true, CInstancedRawAllocator, CAllocatorInstance * > |
| | Shared pointer that allocates object using a given allocator instance.
|
| |
| template<class ObjectType > |
| using | uLang::TSRefA = TSPtrG< ObjectType, false, CInstancedRawAllocator, CAllocatorInstance * > |
| | Shared reference that allocates object using a given allocator instance.
|
| |
◆ UE_API