Hello,
I am porting a project to the iPhone system and I am facing the following problem: I have an header containing c++ templates If I rename it to .mm, it does not compile (because it should be an header) and if I keep it as .h, it is interpreted as an objective C header
Do you have a workaround to fix this issue?
Thanks in advance!
Regards,
edit: add error message and code
template <typename T>
class CML_Matrix
{
public:
//rest of teh template
};
error message is "cannot find protocol declaration for typename"