14 lines
283 B
C++
14 lines
283 B
C++
#pragma once
|
|
|
|
#include <map>
|
|
#include "connection/dbus/bluetooth.hpp"
|
|
#include "widgets/controlCenter/bluetoothSettings.hpp"
|
|
#include "gtkmm/box.h"
|
|
|
|
class SettingsWidget : public Gtk::Box {
|
|
public:
|
|
SettingsWidget();
|
|
private:
|
|
BluetoothSettings bluetoothSettings;
|
|
|
|
}; |