m_pointVar has to be a pointer for that to work. If it isn't, then how to check will depend on the class. Make the class constructor initialize all its variables and the program user won't have to worry about whether it was initialized or not.
Testing for NULL pointer will not even tell you whether the pointer is valid or not. It might be an uninitialized pointer or a pointer that was deleted.