diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-07-23 15:15:17 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-07-24 12:10:29 -0700 |
commit | 1210a633aeca082052621629a5643c661d7a7f34 (patch) | |
tree | c8b1de733d28171c092dfd3e5006624040604e5d /host/lib/usrp/gpsd_iface.hpp | |
parent | 3c8ed1b5baa5fcd093dc9e34550d485a2d3d2bd0 (diff) | |
download | uhd-1210a633aeca082052621629a5643c661d7a7f34.tar.gz uhd-1210a633aeca082052621629a5643c661d7a7f34.tar.bz2 uhd-1210a633aeca082052621629a5643c661d7a7f34.zip |
Remove GPSd dependency
GPSd was used by the E310 prior to its MPM-ification, GPSd is therefore
no longer required by UHD.
Diffstat (limited to 'host/lib/usrp/gpsd_iface.hpp')
-rw-r--r-- | host/lib/usrp/gpsd_iface.hpp | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/host/lib/usrp/gpsd_iface.hpp b/host/lib/usrp/gpsd_iface.hpp deleted file mode 100644 index f58555d4a..000000000 --- a/host/lib/usrp/gpsd_iface.hpp +++ /dev/null @@ -1,26 +0,0 @@ -// -// Copyright 2015 Ettus Research LLC -// Copyright 2018 Ettus Research, a National Instruments Company -// -// SPDX-License-Identifier: GPL-3.0-or-later -// - -#ifndef INCLUDED_GPSD_IFACE_HPP -#define INCLUDED_GPSD_IFACE_HPP - -#include <stdint.h> -#include <boost/shared_ptr.hpp> - -#include <uhd/usrp/gps_ctrl.hpp> - -namespace uhd { namespace usrp { - -class gpsd_iface : public virtual uhd::gps_ctrl { -public: - typedef boost::shared_ptr<gpsd_iface> sptr; - static sptr make(const std::string &addr, uint16_t port); -}; - -}}; - -#endif /* INCLUDED_GPSD_IFACE_HPP */ |