mirror of
https://github.com/vicr123/theshell.git
synced 2025-01-23 12:12:06 -05:00
11 lines
203 B
C++
11 lines
203 B
C++
#include "plugin.h"
|
|
|
|
Plugin::Plugin(QObject *parent) :
|
|
QObject(parent)
|
|
{
|
|
panes.append(new BluetoothManagement());
|
|
}
|
|
|
|
QList<StatusCenterPaneObject*> Plugin::availablePanes() {
|
|
return panes;
|
|
}
|