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 C2580

redefinition of class name 'identifier'

A class, structure, or union is defined more than once. The following sample generates C2580:

class C {
   C::C;   // C2580, remove to resolve the error
};

void main() {
}