NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Error C2645

no qualified name for pointer to member (found ':: *')

The declaration of a pointer to a member does not specify a class.

Example

class A {};
int ::* cp;    // error, class not specifed
int B::* bp    // error, B not defined
int A::* ap;   // OK