Reputation: 20485
template<typename A, typename B>
class mindF_ck
{
template<typename C>
inline bool ouch(C & c_in);
};
How do I define the signature for ouch
out-of-class ? I send a query to my brain but it keeps coming up blank ;)
Upvotes: 11
Views: 2314
Reputation: 30419
template<typename A, typename B>
template<typename C>
bool mindf_uck<A,B>::ouch(C & c_in) {
}
Upvotes: 11
Reputation: 2263
template <typename A, typename B>
template <typename C>
bool mindf_ck<A, B>::ouch(C& c_in) {
// ... code ...
}
Upvotes: 7