summaryrefslogtreecommitdiffstats
path: root/src/baseplayer.h
blob: cea5e5ef517e6d87f4853baf65b615a8a0be6c18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef BASEPLAYER_H
#define 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 /* BASEPLAYER_H */