diff options
Diffstat (limited to 'host/lib/transport/liberio_zero_copy.hpp')
-rw-r--r-- | host/lib/transport/liberio_zero_copy.hpp | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/host/lib/transport/liberio_zero_copy.hpp b/host/lib/transport/liberio_zero_copy.hpp index 1dfa3af71..b41b6416c 100644 --- a/host/lib/transport/liberio_zero_copy.hpp +++ b/host/lib/transport/liberio_zero_copy.hpp @@ -8,30 +8,28 @@ #ifndef LIBERIO_HPP #define LIBERIO_HPP -#include <string> -#include <vector> - #include <uhd/config.hpp> #include <uhd/transport/zero_copy.hpp> #include <uhd/types/device_addr.hpp> #include <boost/shared_ptr.hpp> +#include <string> +#include <vector> namespace uhd { namespace transport { /*! * A zero copy transport interface to the liberio DMA library. */ -class liberio_zero_copy : public virtual zero_copy_if { +class liberio_zero_copy : public virtual zero_copy_if +{ public: typedef boost::shared_ptr<liberio_zero_copy> sptr; - static sptr make( - const std::string &tx_path, - const std::string &rx_path, - const zero_copy_xport_params &default_buff_args - ); + static sptr make(const std::string& tx_path, + const std::string& rx_path, + const zero_copy_xport_params& default_buff_args); }; -}} +}} // namespace uhd::transport #endif /* LIBERIO_HPP */ |