diff options
Diffstat (limited to 'gr-digital/include/gnuradio/digital/packet_header_default.h')
-rw-r--r-- | gr-digital/include/gnuradio/digital/packet_header_default.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gr-digital/include/gnuradio/digital/packet_header_default.h b/gr-digital/include/gnuradio/digital/packet_header_default.h index f6d90bd0e6..24ec1a1f05 100644 --- a/gr-digital/include/gnuradio/digital/packet_header_default.h +++ b/gr-digital/include/gnuradio/digital/packet_header_default.h @@ -13,7 +13,6 @@ #include <gnuradio/digital/api.h> #include <gnuradio/tags.h> #include <boost/crc.hpp> -#include <boost/enable_shared_from_this.hpp> namespace gr { namespace digital { @@ -35,10 +34,10 @@ namespace digital { * this class to create packet headers from data streams. */ class DIGITAL_API packet_header_default - : public boost::enable_shared_from_this<gr::digital::packet_header_default> + : public std::enable_shared_from_this<gr::digital::packet_header_default> { public: - typedef boost::shared_ptr<packet_header_default> sptr; + typedef std::shared_ptr<packet_header_default> sptr; packet_header_default(long header_len, const std::string& len_tag_key = "packet_len", |