theshell/statuscenter/BluetoothPane/plugin.cpp
2018-08-16 00:24:10 +10:00

11 lines
203 B
C++

#include "plugin.h"
Plugin::Plugin(QObject *parent) :
QObject(parent)
{
panes.append(new BluetoothManagement());
}
QList<StatusCenterPaneObject*> Plugin::availablePanes() {
return panes;
}