I\'m having some trouble overloading methods in C++.
As an example of the problem, I have a class with a number of methods being overloaded, and each method having one parameter
Not answering your question but, just out of curiosity, is there a hidden reason for not using a template method instead of defining an overload version for each type?
class SomeClass
{
public:
...
template
void Method(T paramater);
};