Hi Guys i basically have
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
template <unsigned int I>
class Numeric {
public:
//stuff
private:
//stuff
};
template <unsigned int N, unsigned int P>
class FixedPoint : public Numeric<N> {
public:
//stuff
private:
//stuff
};
| |
But i don't know why i have trouble with the inheritance stuff, i.e. the error is
error: provided for 'template<unsigned int N, unsigned int P> class FixedPoint
What does it mean?
Thank you!
Last edited on