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 C2602

'class::Identifier' is not a member of a base class of 'class'

Identifier cannot be accessed because it is not a member inherited from any base class.

Example

struct X
{
   int x;
};
struct A
{
   int a;
};
struct B : public A
{
   X::x;       // error, B is not derived from X
   A::a;       // OK
};