~mixxxdevelopers/mixxx/features_library_scanner

« back to all changes in this revision

Viewing changes to mixxx/mixxx/enginepregain.h

  • Committer: tuehaste
  • Date: 2002-02-26 11:12:07 UTC
  • Revision ID: vcs-imports@canonical.com-20020226111207-5rly26cj9gdd19ba
Initial revision

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef ENGINEPREGAIN_H
 
2
#define ENGINEPREGAIN_H
 
3
 
 
4
#include <qobject.h>
 
5
 
 
6
#include "engineobject.h"
 
7
#include "midiobject.h"
 
8
#include "controlpotmeter.h"
 
9
 
 
10
class EnginePregain : EngineObject {
 
11
  Q_OBJECT
 
12
private:
 
13
  ControlPotmeter* pregainpot;
 
14
 public:
 
15
  FLOAT pregain;
 
16
  EnginePregain(int, MidiObject*);
 
17
  ~EnginePregain();
 
18
  void process(CSAMPLE*, CSAMPLE*, int);
 
19
 public slots:
 
20
  void slotUpdate(FLOAT);
 
21
};
 
22
 
 
23
#endif