X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fdevices%2Fdevice.cpp;h=c6784d403661a21d5ae58f82686695fc577d1d77;hb=8b2eb22ed4f467f5364e8e9824a12137e2433b7e;hp=4edc1d10e11cbb3be3e1b5ae1e79760da47fc4cb;hpb=2ad82c2e40b6865481733913a2c32735602f63c4;p=pulseview.git diff --git a/pv/devices/device.cpp b/pv/devices/device.cpp index 4edc1d1..c6784d4 100644 --- a/pv/devices/device.cpp +++ b/pv/devices/device.cpp @@ -14,8 +14,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ #include @@ -28,6 +27,7 @@ using std::map; using std::set; using sigrok::ConfigKey; +using sigrok::Capability; using sigrok::Error; using Glib::VariantBase; @@ -36,10 +36,6 @@ using Glib::Variant; namespace pv { namespace devices { -Device::Device() -{ -} - Device::~Device() { if (session_) @@ -64,20 +60,11 @@ template T Device::read_config(const ConfigKey *key, const T default_value) { assert(key); - map< const ConfigKey*, set > keys; if (!device_) return default_value; - try { - keys = device_->config_keys(ConfigKey::DEVICE_OPTIONS); - } catch (const Error) { - return default_value; - } - - const auto iter = keys.find(key); - if (iter == keys.end() || - (*iter).second.find(sigrok::GET) == (*iter).second.end()) + if (!device_->config_check(key, Capability::GET)) return default_value; return VariantBase::cast_dynamic>(