diff options
author | Josh Blum <josh@joshknows.com> | 2010-02-01 12:35:34 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-02-01 12:35:34 -0800 |
commit | cc8caeb1230fbaed4a6bc64848a584d51b69362a (patch) | |
tree | 086264364fe1d9d1f790a077cd7d9f3219cc369a /lib/usrp/dboard/basic.cpp | |
parent | 5e455ca92280e3c22f5484cb81a2aef0cdfb5de4 (diff) | |
download | uhd-cc8caeb1230fbaed4a6bc64848a584d51b69362a.tar.gz uhd-cc8caeb1230fbaed4a6bc64848a584d51b69362a.tar.bz2 uhd-cc8caeb1230fbaed4a6bc64848a584d51b69362a.zip |
Work on the properties framwork with wax::obj.
Now the obj handles all 3 things in 1, properties, polymorphic container, proxy.
Diffstat (limited to 'lib/usrp/dboard/basic.cpp')
-rw-r--r-- | lib/usrp/dboard/basic.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/usrp/dboard/basic.cpp b/lib/usrp/dboard/basic.cpp index d92d02eec..35512aa5f 100644 --- a/lib/usrp/dboard/basic.cpp +++ b/lib/usrp/dboard/basic.cpp @@ -28,11 +28,11 @@ basic_rx::~basic_rx(void){ /* NOP */ } -void basic_rx::rx_get(const wax::type &, wax::type &){ +void basic_rx::rx_get(const wax::obj &, wax::obj &){ /* TODO */ } -void basic_rx::rx_set(const wax::type &, const wax::type &){ +void basic_rx::rx_set(const wax::obj &, const wax::obj &){ /* TODO */ } @@ -47,10 +47,10 @@ basic_tx::~basic_tx(void){ /* NOP */ } -void basic_tx::tx_get(const wax::type &, wax::type &){ +void basic_tx::tx_get(const wax::obj &, wax::obj &){ /* TODO */ } -void basic_tx::tx_set(const wax::type &, const wax::type &){ +void basic_tx::tx_set(const wax::obj &, const wax::obj &){ /* TODO */ } |