uhd/host/python
Martin Braun 1fe98e8701 uhd: Replace usage of boost smart pointers with C++11 counterparts
This removes the following Boost constructs:
- boost::shared_ptr, boost::weak_ptr
- boost::enable_shared_from_this
- boost::static_pointer_cast, boost::dynamic_pointer_cast

The appropriate includes were also removed. All C++11 versions of these
require #include <memory>.
Note that the stdlib and Boost versions have the exact same syntax, they
only differ in the namespace (boost vs. std). The modifications were all
done using sed, with the exception of boost::scoped_ptr, which was
replaced by std::unique_ptr.

References to boost::smart_ptr were also removed.

boost::intrusive_ptr is not removed in this commit, since it does not
have a 1:1 mapping to a C++11 construct.
2019-11-26 12:21:32 -08:00
..
__init__.py python: Separating exposed Python data structures 2018-06-20 19:02:32 -05:00
CMakeLists.txt cmake: Remove ENABLE_PYTHON3 flag and simplify Python detection 2019-05-24 14:17:13 -07:00
filters.py python: Separating exposed Python data structures 2018-06-20 19:02:32 -05:00
pyuhd.cpp uhd: Replace usage of boost smart pointers with C++11 counterparts 2019-11-26 12:21:32 -08:00
setup.py.in python: cmake: Use native format for setup.py 2019-02-25 15:20:47 -08:00
types.py python: Replace Boost.Python with PyBind11 2019-02-22 16:56:52 -08:00
usrp.py python: MultiUSRP: Fix send_waveforms() 2019-11-13 14:07:15 -08:00