diff options
Diffstat (limited to 'host/lib/include/uhdlib/rfnoc/clock_iface.hpp')
-rw-r--r-- | host/lib/include/uhdlib/rfnoc/clock_iface.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/host/lib/include/uhdlib/rfnoc/clock_iface.hpp b/host/lib/include/uhdlib/rfnoc/clock_iface.hpp index ae61a645e..06e54e67c 100644 --- a/host/lib/include/uhdlib/rfnoc/clock_iface.hpp +++ b/host/lib/include/uhdlib/rfnoc/clock_iface.hpp @@ -12,12 +12,15 @@ #include <uhd/utils/log.hpp> #include <atomic> #include <string> +#include <memory> namespace uhd { namespace rfnoc { class clock_iface { public: + using sptr = std::shared_ptr<clock_iface>; + clock_iface(const std::string& name) : _name(name), _is_mutable(true) { _is_running = false; |