/* * Value_element.hpp * * Created on: Sep 10, 2014 * Author: heber */ #ifndef VALUE_ELEMENT_HPP_ #define VALUE_ELEMENT_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include #include "Parameters/Value.hpp" // This overrides string conversions for the type element which need a specific function call. template <> bool Value::isValidAsString(const std::string &_value) const throw(ParameterValidatorException); template <> const std::string Value::getAsString() const throw(ParameterValueException); template <> void Value::setAsString(const std::string &_value) throw(ParameterException); #endif /* VALUE_ELEMENT_HPP_ */