summaryrefslogtreecommitdiff
path: root/libs/surfaces/mackie/bcf_surface.h
blob: a5fd3bf5a3ec46ccd99998f2a1bacc7758f9135b (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_bcf_h
#define mackie_surface_bcf_h
/*
	Generated by scripts/generate-surface.rb
*/

#include "surface.h"

namespace Mackie
{

class MackieButtonHandler;

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

}

#endif