File: deck.h

package info (click to toggle)
mixxx 1.11.0~dfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 96,840 kB
  • ctags: 37,182
  • sloc: cpp: 210,326; xml: 167,911; ansic: 24,880; sh: 12,876; python: 9,407; makefile: 566; php: 57
file content (17 lines) | stat: -rw-r--r-- 362 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef DECK_H
#define DECK_H

#include "basetrackplayer.h"

class Deck : public BaseTrackPlayer {
    Q_OBJECT
  public:
    Deck(QObject* pParent,
         ConfigObject<ConfigValue>* pConfig,
         EngineMaster* pMixingEngine,
         EngineChannel::ChannelOrientation defaultOrientation,
         QString group);
    virtual ~Deck();
};

#endif // DECK_H