summaryrefslogtreecommitdiffstats
path: root/src/mixer/previewdeck.h
blob: a5c612877090d6510d7ef58292f3acd18ff92baf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef MIXER_PREVIEWDECK_H
#define MIXER_PREVIEWDECK_H

#include "mixer/basetrackplayer.h"

class PreviewDeck : public BaseTrackPlayerImpl {
    Q_OBJECT
  public:
    PreviewDeck(QObject* pParent,
                UserSettingsPointer pConfig,
                EngineMaster* pMixingEngine,
                EffectsManager* pEffectsManager,
                EngineChannel::ChannelOrientation defaultOrientation,
                QString group);
    virtual ~PreviewDeck();
};

#endif /* MIXER_PREVIEWDECK_H */