summaryrefslogtreecommitdiff
path: root/PluginRoutingInterfaceDbus/RoutingSend.h
diff options
context:
space:
mode:
Diffstat (limited to 'PluginRoutingInterfaceDbus/RoutingSend.h')
-rw-r--r--PluginRoutingInterfaceDbus/RoutingSend.h15
1 files changed, 6 insertions, 9 deletions
diff --git a/PluginRoutingInterfaceDbus/RoutingSend.h b/PluginRoutingInterfaceDbus/RoutingSend.h
index 9f847a7..508614e 100644
--- a/PluginRoutingInterfaceDbus/RoutingSend.h
+++ b/PluginRoutingInterfaceDbus/RoutingSend.h
@@ -33,13 +33,11 @@
#define BUS_NAME "DBUS"
-
/**Implementation of the interface
*
*/
-class RoutingSend: public RoutingSendInterface
-{
-Q_OBJECT
+class RoutingSend: public RoutingSendInterface {
+ Q_OBJECT
public:
RoutingSend();
void startup_interface(RoutingReceiveInterface * audioman);
@@ -53,7 +51,6 @@ public:
bool unmuteSource(source_t sourceID);
bool unmuteSink(sink_t sinkID);
-
public slots:
virtual void slot_system_ready();
@@ -66,10 +63,10 @@ private:
//That is the actual implementation of the Factory Class returning the real sendInterface
-class SampleRoutingInterfaceFactory: public QObject, public RoutingInterfaceFactory
-{
-Q_OBJECT
-Q_INTERFACES(RoutingInterfaceFactory)
+class SampleRoutingInterfaceFactory: public QObject,
+ public RoutingInterfaceFactory {
+ Q_OBJECT
+ Q_INTERFACES(RoutingInterfaceFactory)
public:
RoutingSendInterface* returnInstance();
};