From cc8caeb1230fbaed4a6bc64848a584d51b69362a Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Mon, 1 Feb 2010 12:35:34 -0800 Subject: Work on the properties framwork with wax::obj. Now the obj handles all 3 things in 1, properties, polymorphic container, proxy. --- lib/usrp/dboard/manager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/usrp/dboard/manager.cpp') diff --git a/lib/usrp/dboard/manager.cpp b/lib/usrp/dboard/manager.cpp index fcdde84db..12cfdd156 100644 --- a/lib/usrp/dboard/manager.cpp +++ b/lib/usrp/dboard/manager.cpp @@ -93,7 +93,7 @@ private: type_t _type; //forward the get calls to the rx or tx - void get(const wax::type &key, wax::type &val){ + void get(const wax::obj &key, wax::obj &val){ switch(_type){ case RX_TYPE: return _subdev->rx_get(key, val); case TX_TYPE: return _subdev->tx_get(key, val); @@ -101,7 +101,7 @@ private: } //forward the set calls to the rx or tx - void set(const wax::type &key, const wax::type &val){ + void set(const wax::obj &key, const wax::obj &val){ switch(_type){ case RX_TYPE: return _subdev->rx_set(key, val); case TX_TYPE: return _subdev->tx_set(key, val); -- cgit v1.2.3