Is it possible to define two different template (by number of template arguments) classes with the same name?
Here's what I am trying to do:
namespace MyNamespace
{
template<class TRet>
class FunctionObject
{
typedef typename TRet ReturnType;
virtual ReturnType const operator()() const = 0;
};
template<class TRet, class TArg0>
class FunctionObject
{
typedef typename TRet ReturnType;
typedef typename TArg0 FirstArgumentType;
virtual ReturnType const operator()(FirstArgumentType const &arg) const = 0;
};
}
I get an error mentioning too many template arguments at the end of closing bracket of the second FunctionObject struct definition.
I know this can be done in C#, but wasn't sure about C++. Can someone please shed some light here?