Paul Davis
449aab3c46
git-svn-id: svn://localhost/ardour2/branches/3.0@3435 d708f5d6-7413-0410-9779-e7cbd77b26cf
28 lines
486 B
Plaintext
28 lines
486 B
Plaintext
#ifndef mackie_surface_<%= sf.name.downcase %>_h
|
|
#define mackie_surface_<%= sf.name.downcase %>_h
|
|
/*
|
|
Generated by scripts/generate-surface.rb
|
|
*/
|
|
|
|
#include "surface.h"
|
|
|
|
namespace Mackie
|
|
{
|
|
|
|
class MackieButtonHandler;
|
|
|
|
class <%= sf.name %>Surface : public Surface
|
|
{
|
|
public:
|
|
<%= sf.name %>Surface( uint32_t max_strips ) : Surface( max_strips )
|
|
{
|
|
}
|
|
|
|
virtual void handle_button( MackieButtonHandler & mbh, ButtonState bs, Button & button );
|
|
virtual void init_controls();
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|