~mixxxdevelopers/mixxx/engine-control-refactor

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef SIDECHAINWORKER_H
#define SIDECHAINWORKER_H

#include "defs.h"

class SideChainWorker {
  public:
    SideChainWorker() { }
    virtual ~SideChainWorker() { }
    virtual void process(const CSAMPLE* pBuffer, const int iBufferSize) = 0;
    virtual void shutdown() = 0;
};

#endif /* SIDECHAINWORKER_H */