summaryrefslogtreecommitdiffstats
path: root/host/include
diff options
context:
space:
mode:
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>