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 C2943

'class' : template-class-id redefined as a type argument of a template

You cannot use a templated class, instead of a symbol, as a template type argument.

Example

template<class T> class List {};
template<class List<int> > class MyList;   // error