![]() |
Mixxx
|
00001 #ifndef SAMPLERBANK_H 00002 #define SAMPLERBANK_H 00003 00004 #include <QObject> 00005 00006 class ControlObject; 00007 class PlayerManager; 00008 00009 class SamplerBank : public QObject { 00010 Q_OBJECT 00011 00012 public: 00013 SamplerBank(PlayerManager* pPlayerManager); 00014 virtual ~SamplerBank(); 00015 00016 private slots: 00017 void slotSaveSamplerBank(double v); 00018 void slotLoadSamplerBank(double v); 00019 00020 private: 00021 PlayerManager* m_pPlayerManager; 00022 ControlObject* m_pLoadControl; 00023 ControlObject* m_pSaveControl; 00024 }; 00025 00026 #endif /* SAMPLERBANK_H */