This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
Compiler Error C2504
'class' : base class undefined
The base class is declared but never defined.
Possible cause
- Missing include file.
- External base class not declared with extern.
Example
class A; // error, A is undefined
class A {}; // OK, A is defined
class B : public A {}; // the error is detected here