/* * Copyright 2008-2009, Oliver Ruiz Dorantes, * Copyright 2012-2013, Tri-Edge AI * * All rights reserved. Distributed under the terms of the MIT license. */ #ifndef BLUETOOTH_SETTINGS_H #define BLUETOOTH_SETTINGS_H #include #include #include #include #include class BluetoothSettings { public: struct { bdaddr_t PickedDevice; DeviceClass LocalDeviceClass; } Data; BluetoothSettings(); ~BluetoothSettings(); void Defaults(); void Load(); void Save(); private: BPath fPath; BFile* fFile; }; #endif // BLUETOOTH_SETTINGS_H