1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#pragma once #include <vector> namespace drivers { class Bluetooth { public: static auto Enable() -> Bluetooth*; Bluetooth(); ~Bluetooth(); struct Device {}; auto Scan() -> std::vector<Device>; private: }; }