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 C2499

'class' : a class cannot be its own base class

You attempted to specify the class that you are defining as a base class.

For example:

// compile with cl /c
//
class CMyClass : public CMyClass {
};