-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfcb1010.h
executable file
·37 lines (28 loc) · 1.34 KB
/
fcb1010.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/////////////////////////////////////////////////////////////////////////////////////////////////////
// PROGRAM: MidyAX 2 - MIDI communications orchestrator - MIDI controllers to AXE-FX //
// AIM: Provide enhanced usability of the AXE-FX by making it possible to set the //
// AXE-FX parameters with a hardware interface (knobs/switches of a MIDI controller //
// like : BCR2000 /BCF2000, XTouch Mini, BeatStep, Guitar Wing ... ) //
// CREATOR: Eric FEUILLEAUBOIS //
// PROG ENV: Qt v5.6 or above, RTMIDI library (https://github.com/thestk/rtmidi) //
// HARDWARE: Tested on RPi / PC / MAC / Linux Box / Pipo X8 //
// LICENSE: GNU GPL v3 - That means OPEN SOFWARE, COPYLEFT and hope it's useful to you //
/////////////////////////////////////////////////////////////////////////////////////////////////////
#ifndef FCB1010_H
#define FCB1010_H
#include <QDialog>
#include "midicontrollergenericdialogmod1.h"
namespace Ui {
class FCB1010;
}
class FCB1010 : public MIDIControllerGenericDialogMOD1
{
Q_OBJECT
public:
explicit FCB1010(QWidget *parent = 0);
~FCB1010();
void init( void);
private:
Ui::FCB1010 *ui;
};
#endif // FCB1010_H