mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
24 lines
440 B
C
24 lines
440 B
C
|
|
#ifndef __ardour_mackie_control_protocol_fader_h__
|
||
|
|
#define __ardour_mackie_control_protocol_fader_h__
|
||
|
|
|
||
|
|
#include "controls.h"
|
||
|
|
|
||
|
|
namespace Mackie {
|
||
|
|
|
||
|
|
class Fader : public Control
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
Fader (int id, int ordinal, std::string name, Group & group)
|
||
|
|
: Control (id, ordinal, name, group)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
virtual type_t type() const { return type_fader; }
|
||
|
|
|
||
|
|
static Control* factory (Surface&, int id, int ordinal, const char*, Group&);
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|