~mixxxdevelopers/mixxx/engine-control-refactor

« back to all changes in this revision

Viewing changes to mixxx/src/engine/sidechain/sidechainworker.h

  • Committer: RJ Ryan
  • Date: 2013-06-04 00:41:29 UTC
  • mfrom: (2890.22.101 mixxx)
  • Revision ID: rryan@mixxx.org-20130604004129-8jjxkicsb3givu4a
MergingĀ fromĀ lp:mixxx.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef SIDECHAINWORKER_H
 
2
#define SIDECHAINWORKER_H
 
3
 
 
4
#include "defs.h"
 
5
 
 
6
class SideChainWorker {
 
7
  public:
 
8
    SideChainWorker() { }
 
9
    virtual ~SideChainWorker() { }
 
10
    virtual void process(const CSAMPLE* pBuffer, const int iBufferSize) = 0;
 
11
    virtual void shutdown() = 0;
 
12
};
 
13
 
 
14
#endif /* SIDECHAINWORKER_H */