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 C2511

'identifier' : overloaded member function not found in 'class'

No version of the function is declared with the specified parameters.

Possible causes

The following sample generates C2511:

class C {
   int c_2;
   int Func(char *, char *);
};

int C::Func(char *, char *, int i) {   // C2511
// try ...
// int C::Func(char *, char *) {
   return 0;
}

void main() {
}