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 Warning (level 1) C4661

'identifier' : no suitable definition provided for explicit template instantiation request

A member of the template class is not defined.

Example

template<class T> class MyClass 
{
public:
   void i();              // declaration but not definition
};
template MyClass< int >;  // warning