MCPcopy Create free account
hub / github.com/GarageGames/Torque3D / StringStackPtrRef

Class StringStackPtrRef

Engine/source/console/stringStack.h:42–52  ·  view source on GitHub ↗

Helper class which stores a relative pointer in the StringStack buffer

Source from the content-addressed store, hash-verified

40
41/// Helper class which stores a relative pointer in the StringStack buffer
42class StringStackPtrRef
43{
44public:
45 StringStackPtrRef() : mOffset(0) {;}
46 StringStackPtrRef(StringStackPtr offset) : mOffset(offset) {;}
47
48 StringStackPtr mOffset;
49
50 /// Get pointer to string in stack stk
51 inline char *getPtr(StringStack *stk);
52};
53
54/// Core stack for interpreter operations.
55///

Callers 2

execMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected