-
Notifications
You must be signed in to change notification settings - Fork 0
Link #1
Copy link
Copy link
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Activity
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working
cpp
#include
#include
class BluetoothDevice {
public:
BluetoothDevice(std::string name) : name(name) {}
private:
std::string name;
};
int main() {
BluetoothDevice myDevice("MyBluetoothDevice");
myDevice.pair();
}