Hi,

I would like to define a templated class while implementing default value on templated arguments. I don't know how to do that with string templated variables.

For exemple:

Code:
template <class T>
class A {
public:

    A() { version = ???? }

    std::string_base<T> version;

};
I don't want to pass the default value as parameter of the constructor.
Does someone know how I can do this?

Thank you,

madric