Line | Branch | Exec | Source |
---|---|---|---|
1 | #ifndef LINE6POD2_H | ||
2 | #define LINE6POD2_H | ||
3 | |||
4 | #include "interpreter/interpreter.h" | ||
5 | #include "interpreter/midimessage.h" | ||
6 | |||
7 | namespace interpreter { | ||
8 | |||
9 | class Line6Pod2 : public BaseInterpreter | ||
10 | { | ||
11 | public: | ||
12 |
1/2✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
|
1 | static BaseInterpreter *factory() { return new Line6Pod2(); }; |
13 | |||
14 | public: | ||
15 | Line6Pod2(); | ||
16 | ~Line6Pod2(); | ||
17 | |||
18 | virtual MidiMessage *buildMessage(const QByteArray &message); | ||
19 | |||
20 | protected: | ||
21 | MidiMessage *m_message; | ||
22 | }; | ||
23 | |||
24 | } | ||
25 | |||
26 | #endif // LINE6POD2_H | ||
27 |