![]() |
Mixxx
|
00001 #ifndef SAMPLER_H 00002 #define SAMPLER_H 00003 00004 #include "basetrackplayer.h" 00005 00006 class Sampler : public BaseTrackPlayer { 00007 Q_OBJECT 00008 public: 00009 Sampler(QObject* pParent, 00010 ConfigObject<ConfigValue> *pConfig, 00011 EngineMaster* pMixingEngine, 00012 EngineChannel::ChannelOrientation defaultOrientation, 00013 QString group); 00014 virtual ~Sampler(); 00015 }; 00016 00017 #endif