Member Pointers
This article is quite advanced and assumes you have an understanding of C++. If not, please refer to the C++ section of this book!
Member Pointers are traditional pointers that point to class or struct members.
class SomeClass
{
public:
int data;
};
int SomeClass::* memberPointer = &SomeClass::data;