summaryrefslogtreecommitdiffstats
path: root/src/mixer/baseplayer.h
diff options
context:
space:
mode:
authorRJ Ryan <rryan@mixxx.org>2016-01-09 10:57:36 -0800
committerRJ Ryan <rryan@mixxx.org>2016-01-09 10:57:36 -0800
commite1005e1c5cdb3470cb7181d3b4cc9d851918fdce (patch)
tree437b28b252121ac1964accb1603ba30afb2e9e8f /src/mixer/baseplayer.h
parent7b57c3234a4d8f923b067273e9a90d9efa690abc (diff)
Move classes that represent mixing "devices" into mixer/.
PlayerManager should be renamed MixerManager at some point. I didn't to avoid causing too many merge conflicts.
Diffstat (limited to 'src/mixer/baseplayer.h')
-rw-r--r--src/mixer/baseplayer.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/mixer/baseplayer.h b/src/mixer/baseplayer.h
new file mode 100644
index 0000000000..7ce17d3b69
--- /dev/null
+++ b/src/mixer/baseplayer.h
@@ -0,0 +1,21 @@
+#ifndef MIXER_BASEPLAYER_H
+#define MIXER_BASEPLAYER_H
+
+#include <QObject>
+#include <QString>
+
+class BasePlayer : public QObject {
+ Q_OBJECT
+ public:
+ BasePlayer(QObject* pParent, QString group);
+ virtual ~BasePlayer();
+
+ inline const QString& getGroup() {
+ return m_group;
+ }
+
+ private:
+ const QString m_group;
+};
+
+#endif /* MIXER_BASEPLAYER_H */