aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/types.cpp
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-11-11 12:23:38 -0800
committerJosh Blum <josh@joshknows.com>2010-11-11 12:23:38 -0800
commit5da1e3e2d683eecce1f0e888d90caef40661e98e (patch)
tree3d3975e2b71da80835d4e1b5aed02cbeb1489661 /host/lib/types.cpp
parent314efb09459582b39ea2985bd8f9beba703076e4 (diff)
parent06e2e1e02fdc93eb00f6cf0d532ffc2943feaf06 (diff)
downloaduhd-5da1e3e2d683eecce1f0e888d90caef40661e98e.tar.gz
uhd-5da1e3e2d683eecce1f0e888d90caef40661e98e.tar.bz2
uhd-5da1e3e2d683eecce1f0e888d90caef40661e98e.zip
Merge branch 'ranges'
Diffstat (limited to 'host/lib/types.cpp')
-rw-r--r--host/lib/types.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/host/lib/types.cpp b/host/lib/types.cpp
index e5e6a2512..8ccb664d5 100644
--- a/host/lib/types.cpp
+++ b/host/lib/types.cpp
@@ -16,7 +16,6 @@
//
#include <uhd/utils/assert.hpp>
-#include <uhd/types/ranges.hpp>
#include <uhd/types/tune_request.hpp>
#include <uhd/types/tune_result.hpp>
#include <uhd/types/clock_config.hpp>
@@ -41,24 +40,6 @@
using namespace uhd;
/***********************************************************************
- * ranges
- **********************************************************************/
-gain_range_t::gain_range_t(float min, float max, float step):
- min(min),
- max(max),
- step(step)
-{
- /* NOP */
-}
-
-freq_range_t::freq_range_t(double min, double max):
- min(min),
- max(max)
-{
- /* NOP */
-}
-
-/***********************************************************************
* tune request
**********************************************************************/
tune_request_t::tune_request_t(double target_freq):