├── .gitignore ├── CMakeLists.txt ├── Makefile ├── README.md ├── asio_bluetooth ├── basic_endpoint.hpp ├── bluetooth.hpp ├── detail │ ├── endpoint.hpp │ └── impl │ │ └── endpoint.ipp └── misc.hpp ├── echoclient.cpp ├── echoserver.cpp ├── wrapper.cpp └── wrapper.h /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | *~ 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datengx/boost_asio_bluetooth/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datengx/boost_asio_bluetooth/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datengx/boost_asio_bluetooth/HEAD/README.md -------------------------------------------------------------------------------- /asio_bluetooth/basic_endpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datengx/boost_asio_bluetooth/HEAD/asio_bluetooth/basic_endpoint.hpp -------------------------------------------------------------------------------- /asio_bluetooth/bluetooth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datengx/boost_asio_bluetooth/HEAD/asio_bluetooth/bluetooth.hpp -------------------------------------------------------------------------------- /asio_bluetooth/detail/endpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datengx/boost_asio_bluetooth/HEAD/asio_bluetooth/detail/endpoint.hpp -------------------------------------------------------------------------------- /asio_bluetooth/detail/impl/endpoint.ipp: -------------------------------------------------------------------------------- 1 | // Add later 2 | -------------------------------------------------------------------------------- /asio_bluetooth/misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datengx/boost_asio_bluetooth/HEAD/asio_bluetooth/misc.hpp -------------------------------------------------------------------------------- /echoclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datengx/boost_asio_bluetooth/HEAD/echoclient.cpp -------------------------------------------------------------------------------- /echoserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datengx/boost_asio_bluetooth/HEAD/echoserver.cpp -------------------------------------------------------------------------------- /wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datengx/boost_asio_bluetooth/HEAD/wrapper.cpp -------------------------------------------------------------------------------- /wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datengx/boost_asio_bluetooth/HEAD/wrapper.h --------------------------------------------------------------------------------