This is a malformed name:
hosters::hostersLink::getLink(int)
Make sure you define this feature.
Well, I looked at the 0.6 hosters in detail. Header files declare two getLink methods:
std::string getLink(void); std::string getLink(int n);
But the source file declares only the first:
std::string hostersLink::getLink(void) {return Link;}
But SWIG creates wrappers for both functions that spin things up. I recommend doing one of two things:
- Remove the
std::string getLink(int n); as undefined. - Add definition for
std::string getLink(int n) { ... }
source share