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 C2644

basis class 'class' for pointer to member has not been defined

A pointer points to a class that was declared but not defined.

Example

class C;
int C::* cp; // error, C has not been defined
class D {};
int D::*dp;  // OK