summaryrefslogtreecommitdiffstats
path: root/host/include
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-11-11 19:12:41 -0800
committerJosh Blum <josh@joshknows.com>2010-11-11 19:12:41 -0800
commitf22303e6e4a2f425d588439cc05f8b04ef79c1d2 (patch)
tree5409478e64459cb207b863ee1dac42091b5eca3a /host/include
parent258d9bb45fbe7a0fa246f860eee7bf3e3b978fe3 (diff)
downloaduhd-f22303e6e4a2f425d588439cc05f8b04ef79c1d2.tar.gz
uhd-f22303e6e4a2f425d588439cc05f8b04ef79c1d2.tar.bz2
uhd-f22303e6e4a2f425d588439cc05f8b04ef79c1d2.zip
uhd: fixed ranges stuff, export symbols and use doubles not iterators...
Diffstat (limited to 'host/include')
-rw-r--r--host/include/uhd/types/ranges.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/host/include/uhd/types/ranges.hpp b/host/include/uhd/types/ranges.hpp
index 206c64726..c10c36ccf 100644
--- a/host/include/uhd/types/ranges.hpp
+++ b/host/include/uhd/types/ranges.hpp
@@ -103,9 +103,15 @@ namespace uhd{
};
+ //! export a symbol for the gain range type
+ template struct UHD_API meta_range_t<float>;
typedef meta_range_t<float> gain_range_t;
+
+ //! export a symbol for the freq range type
+ template struct UHD_API meta_range_t<double>;
typedef meta_range_t<double> freq_range_t;
+
} //namespace uhd
#include <uhd/types/ranges.ipp>