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 C2618

local classes cannot have base classes

A local class cannot have a base class, even if the base class itself has file scope.

Example

class A { };
void f()
{
    class B : public A {};   // error
}