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 C2518

keyword 'keyword' illegal in base class list; ignored

The keywords class and struct should not appear in a base class list.

Example

class B {};
class C   : public class B {}; // error
class C   : public B {};       // OK