summaryrefslogtreecommitdiff
path: root/src/drivers/include/bluetooth.hpp
blob: f3a4b2aca1c13b9eb6abd4094ce867d7c5385b9b (plain)
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:
  };

}