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 C2501

'identifier' : missing storage-class or type specifiers

The identifier is declared without specifying its type.

Possible causes

Example

// Header file for the CUndeclared has been omitted:
class CMyClass {
private:
   CUndeclared m_myClass;  // Error: Class unknown
} ;