From 322a616573dfe52ee412573bd93fbc646b4ca008 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Thu, 4 May 2017 16:03:26 +0200 Subject: Properly hook up the sink fabric --- framework/src/sinkfabric.h | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'framework/src/sinkfabric.h') diff --git a/framework/src/sinkfabric.h b/framework/src/sinkfabric.h index e69de29b..1c835791 100644 --- a/framework/src/sinkfabric.h +++ b/framework/src/sinkfabric.h @@ -0,0 +1,33 @@ +/* + Copyright (c) 2017 Christian Mollekopf + + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Library General Public License as published by + the Free Software Foundation; either version 2 of the License, or (at your + option) any later version. + + This library is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public + License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to the + Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. +*/ +#pragma once + +#include + +class SinkFabric : public QObject { + Q_OBJECT +public: + SinkFabric(); + ~SinkFabric(); + + static SinkFabric &instance(); +private: + class Private; + Private *d; +}; -- cgit v1.2.3