| 62 | /// Primary constructor |
| 63 | template <typename T> |
| 64 | Option(std::string const& name, const T& value) : m_name(name) |
| 65 | { |
| 66 | m_value = Utils::toString(value); |
| 67 | } |
| 68 | |
| 69 | Option(std::string const& name, const std::string& value) : m_name(name), m_value(value) |
| 70 | {} |