1 #ifndef VTESTBED_GUI_SLIDERANGLE_HH 2 #define VTESTBED_GUI_SLIDERANGLE_HH 21 inline void name(
const std::string& rhs) { this->_name = rhs; }
22 inline const std::string& name()
const {
return this->_name; }
23 inline T value()
const {
return this->_value; }
24 inline void value(T rhs) { this->_value = rhs; }
25 inline void min(T rhs) { this->_degrees_min = rhs; }
26 inline void max(T rhs) { this->_degrees_max = rhs; }
36 #endif // vim:filetype=cpp