Mixxx

/home/maxime/Projets/Mixxx/1.10/mixxx/src/baseplayer.h

Go to the documentation of this file.
00001 #ifndef BASEPLAYER_H
00002 #define BASEPLAYER_H
00003 
00004 #include <QtCore>
00005 
00006 class BasePlayer : public QObject {
00007     Q_OBJECT
00008   public:
00009     BasePlayer(QObject* pParent, QString group);
00010     virtual ~BasePlayer();
00011 
00012     const QString getGroup();
00013 
00014   private:
00015     const QString m_group;
00016 };
00017 
00018 #endif /* BASEPLAYER_H */
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines