Ardour  9.0-pre0-350-gf17a656217
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 #pragma once
21 
22 #include "evoral/Sequence.h"
23 #include "ardour/automatable.h"
24 #include "ardour/event_type_map.h"
25 
26 namespace ARDOUR {
27 
29 template<typename T>
30 class /*LIBARDOUR_API*/ AutomatableSequence : public Automatable, public Evoral::Sequence<T> {
31 public:
33  : Evoral::ControlSet()
34  , Automatable(s, tdp)
35  , Evoral::Sequence<T>(EventTypeMap::instance())
36  {}
37 
39  : Evoral::ControlSet(other)
40  , Automatable(other._a_session, other)
41  , Evoral::Sequence<T>(other)
42  {}
43 
44 };
45 
46 } // namespace ARDOUR
47 
48 
AutomatableSequence(Session &s, Temporal::TimeDomainProvider const &tdp)
AutomatableSequence(const AutomatableSequence< T > &other)
Session & _a_session
Definition: automatable.h:128
Sequence(const TypeMap &type_map)
Definition: editor.h:85