e878b36519
git-svn-id: svn://localhost/ardour2/trunk@1460 d708f5d6-7413-0410-9779-e7cbd77b26cf
28 lines
424 B
C++
28 lines
424 B
C++
#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
|