1 #ifndef STRINGCONVERTIBLE_HPP 2 #define STRINGCONVERTIBLE_HPP 10 virtual std::string toString() = 0;
11 virtual bool fromString(
const std::string&) = 0;
14 typedef std::shared_ptr<StringConvertible> StringConvertiblePtr;
16 #endif // STRINGCONVERTIBLE_HPP Definition: StringConvertible.hpp:7