~mr-unwell2006/mixxx/mixxx

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef BASEPLAYER_H
#define BASEPLAYER_H

#include <QtCore>

class BasePlayer : public QObject {
    Q_OBJECT
  public:
    BasePlayer(QObject* pParent, QString group);
    virtual ~BasePlayer();

    const QString getGroup();

  private:
    const QString m_group;
};

#endif /* BASEPLAYER_H */