summaryrefslogtreecommitdiff
path: root/libs/surfaces/mackie/mackie_surface.h
blob: 735cbc5851feb68bfb1d4c931476162ea0f4be2e (plain)
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
#ifndef mackie_surface_mackie_h
#define mackie_surface_mackie_h
/*
	Generated by scripts/generate-surface.rb
*/

#include "surface.h"

namespace Mackie
{

class MackieButtonHandler;

class MackieSurface : public Surface
{
public:
	MackieSurface( uint32_t max_strips ) : Surface( max_strips )
	{
	}
	
	virtual void handle_button( MackieButtonHandler & mbh, ButtonState bs, Button & button );
	virtual void init_controls();
};

}

#endif