summaryrefslogtreecommitdiff
path: root/gtk2_ardour/canvas-sysex.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-02-17 02:19:16 +0000
committerDavid Robillard <d@drobilla.net>2009-02-17 02:19:16 +0000
commitb857756f6034f1d9baf4181e824a5166dfd1acc8 (patch)
treec02fd83c02887a459a52dc49641f94c140889f24 /gtk2_ardour/canvas-sysex.h
parent022818b4a796f52c0a91eea42e65aec0bc7bed43 (diff)
Remove unnecessary/unused template parameter from canvas sysex flags.
Add license headers to canvas sysex files (tsk, tsk). git-svn-id: svn://localhost/ardour2/branches/3.0@4610 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/canvas-sysex.h')
-rw-r--r--gtk2_ardour/canvas-sysex.h38
1 files changed, 26 insertions, 12 deletions
diff --git a/gtk2_ardour/canvas-sysex.h b/gtk2_ardour/canvas-sysex.h
index 97c99bb5aa..e69581a061 100644
--- a/gtk2_ardour/canvas-sysex.h
+++ b/gtk2_ardour/canvas-sysex.h
@@ -1,35 +1,49 @@
+/*
+ Copyright (C) 2009 Paul Davis
+ Author: Hans Baier
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+*/
+
#ifndef CANVAS_SYSEX_H_
#define CANVAS_SYSEX_H_
#include "canvas-flag.h"
-#include <evoral/MIDIEvent.hpp>
class MidiRegionView;
namespace Gnome {
namespace Canvas {
-template<typename Time>
class CanvasSysEx : public CanvasFlag
{
public:
CanvasSysEx(
- MidiRegionView& region,
- Group& parent,
- string& text,
- double height,
- double x,
- double y);
+ MidiRegionView& region,
+ Group& parent,
+ string& text,
+ double height,
+ double x,
+ double y);
virtual ~CanvasSysEx();
virtual bool on_event(GdkEvent* ev);
-
-
-private:
};
} // namespace Canvas
} // namespace Gnome
-#endif /*CANVAS_SYSEX_H_*/
+#endif /* CANVAS_SYSEX_H_ */