2 Copyright (C) 2012 Intel Corporation
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with this library; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #include <abstractsink.h>
23 #include <serialport.hpp>
26 #include <QDBusAbstractAdaptor>
27 #include <QDBusObjectPath>
28 #include <QVariantMap>
30 #include <QDBusUnixFileDescriptor>
32 class BluetoothSinkPlugin;
34 class BtProfileAdaptor : public QDBusAbstractAdaptor
37 Q_CLASSINFO("D-Bus Interface", "org.bluez.Profile1")
41 BtProfileAdaptor(BluetoothSinkPlugin* parent);
47 void NewConnection(QDBusObjectPath device, QDBusUnixFileDescriptor fd, QVariantMap fd_properties);
49 void RequestDisconnection(QDBusObjectPath device);
53 BluetoothSinkPlugin* mParent;
57 class BluetoothSinkPlugin: public QObject, public AbstractSink
62 BluetoothSinkPlugin(AbstractRoutingEngine* re, map<string, string> config);
66 void supportedChanged(const PropertyList &) {}
68 void propertyChanged(AbstractPropertyType* value);
72 void newConnection(std::string path, QDBusUnixFileDescriptor fd, QVariantMap props);
74 void requestDisconnection(std::string path);
85 #endif // EXAMPLEPLUGIN_H