diff options
author | Josh Blum <josh@joshknows.com> | 2012-07-04 13:40:19 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2012-07-04 13:40:19 -0700 |
commit | d61c9b29b357579aa41928c225d137645144e20d (patch) | |
tree | e9fe7ee72a49283f95b745e566a509c1b3993c94 /host/include | |
parent | 45c1af8152d02cd7d4e5d5d603e1cca65f6dd539 (diff) | |
download | uhd-d61c9b29b357579aa41928c225d137645144e20d.tar.gz uhd-d61c9b29b357579aa41928c225d137645144e20d.tar.bz2 uhd-d61c9b29b357579aa41928c225d137645144e20d.zip |
uhd: make range_t a lightweight object
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/types/ranges.hpp | 5 | ||||
-rw-r--r-- | host/include/uhd/version.hpp | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/host/include/uhd/types/ranges.hpp b/host/include/uhd/types/ranges.hpp index f0d0e1c0b..ac632df93 100644 --- a/host/include/uhd/types/ranges.hpp +++ b/host/include/uhd/types/ranges.hpp @@ -1,5 +1,5 @@ // -// Copyright 2010-2011 Ettus Research LLC +// Copyright 2010-2012 Ettus Research LLC // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -19,7 +19,6 @@ #define INCLUDED_UHD_TYPES_RANGES_HPP #include <uhd/config.hpp> -#include <uhd/utils/pimpl.hpp> #include <string> #include <vector> @@ -60,7 +59,7 @@ namespace uhd{ //! Convert this range to a printable string const std::string to_pp_string(void) const; - private: UHD_PIMPL_DECL(impl) _impl; + private: double _start, _stop, _step; }; /*! diff --git a/host/include/uhd/version.hpp b/host/include/uhd/version.hpp index 09d0e55fd..ec017ee32 100644 --- a/host/include/uhd/version.hpp +++ b/host/include/uhd/version.hpp @@ -27,7 +27,7 @@ * The format is oldest ABI compatible release - ABI compat number. * The compatibility number allows pre-release ABI to be versioned. */ -#define UHD_VERSION_ABI_STRING "3.4.0-2" +#define UHD_VERSION_ABI_STRING "3.4.0-3" namespace uhd{ |