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 C2877

'symbol' is not accessible from 'class'

All members derived from a base class must be accessible in the derived class.

Example

In the following code, variable a is not accessible in B.

class A {
private:
   int a;
};

class B : public A {
   using A::a; // error C2877
};