summaryrefslogtreecommitdiffstats
path: root/src/mixer/sampler.cpp
blob: c8a357b60f2b4e1fd05cf183fca1e2761513f38d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "mixer/sampler.h"

#include "controlobject.h"

Sampler::Sampler(QObject* pParent,
                 UserSettingsPointer pConfig,
                 EngineMaster* pMixingEngine,
                 EffectsManager* pEffectsManager,
                 EngineChannel::ChannelOrientation defaultOrientation,
                 QString group) :
        BaseTrackPlayerImpl(pParent, pConfig, pMixingEngine, pEffectsManager,
                            defaultOrientation, group, true, false) {
}

Sampler::~Sampler() {
}