Ardour  8.12
automatable_sequence.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2009-2014 David Robillard <d@drobilla.net>
3  * Copyright (C) 2010-2013 Paul Davis <paul@linuxaudiosystems.com>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  */
19 
20 #ifndef __ardour_automatable_sequence_h__
21 #define __ardour_automatable_sequence_h__
22 
23 #include "evoral/Sequence.h"
24 #include "ardour/automatable.h"
25 #include "ardour/event_type_map.h"
26 
27 namespace ARDOUR {
28 
30 template<typename T>
31 class /*LIBARDOUR_API*/ AutomatableSequence : public Automatable, public Evoral::Sequence<T> {
32 public:
34  : Evoral::ControlSet()
35  , Automatable(s, tdp)
36  , Evoral::Sequence<T>(EventTypeMap::instance())
37  {}
38 
40  : Evoral::ControlSet(other)
41  , Automatable(other._a_session, other)
42  , Evoral::Sequence<T>(other)
43  {}
44 
45 };
46 
47 } // namespace ARDOUR
48 
49 #endif /* __ardour_automatable_sequence_h__ */
50 
AutomatableSequence(Session &s, Temporal::TimeDomainProvider const &tdp)
AutomatableSequence(const AutomatableSequence< T > &other)
Session & _a_session
Definition: automatable.h:129
Sequence(const TypeMap &type_map)
Definition: editor.h:87