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 C2633

'identifier' : 'inline' is the only legal storage class for constructors

A constructor is declared as a storage class other than inline.

Example

class C
{
   extern C();  // error, not inline
};