Hi,
I am new to the implementation of templates.
Theoretically, this is what I need.
class A
{
somefunction(int [][2]);
somefunction(float [][2]);
otherfunction1();
otherfunction2();
}
I want to create a function template for somefunction. I can create a template but I am not sure how to call it and also how to define the prototype in class A.
Thanks.
rsshetty.
It's always in the details.
I am new to the implementation of templates.
Theoretically, this is what I need.
class A
{
somefunction(int [][2]);
somefunction(float [][2]);
otherfunction1();
otherfunction2();
}
I want to create a function template for somefunction. I can create a template but I am not sure how to call it and also how to define the prototype in class A.
Thanks.
rsshetty.
It's always in the details.