18 #ifndef INCLUDED_UHD_UTILS_GAIN_GROUP_HPP
19 #define INCLUDED_UHD_UTILS_GAIN_GROUP_HPP
23 #include <boost/shared_ptr.hpp>
24 #include <boost/function.hpp>
25 #include <boost/utility.hpp>
42 typedef boost::shared_ptr<gain_group>
sptr;
53 virtual gain_range_t get_range(
const std::string &name =
"") = 0;
61 virtual double get_value(
const std::string &name =
"") = 0;
71 virtual void set_value(
double gain,
const std::string &name =
"") = 0;
78 virtual const std::vector<std::string> get_names(
void) = 0;
94 virtual void register_fcns(
95 const std::string &name,
104 static sptr make(
void);