summaryrefslogtreecommitdiff
path: root/libs/evoral/evoral/ControlSet.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'libs/evoral/evoral/ControlSet.hpp')
-rw-r--r--libs/evoral/evoral/ControlSet.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/libs/evoral/evoral/ControlSet.hpp b/libs/evoral/evoral/ControlSet.hpp
index e039332920..39c3eba344 100644
--- a/libs/evoral/evoral/ControlSet.hpp
+++ b/libs/evoral/evoral/ControlSet.hpp
@@ -1,16 +1,16 @@
/* This file is part of Evoral.
* Copyright (C) 2008 Dave Robillard <http://drobilla.net>
* Copyright (C) 2000-2008 Paul Davis
- *
+ *
* Evoral 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.
- *
+ *
* Evoral 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 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.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
@@ -37,10 +37,10 @@ class ControlSet : public boost::noncopyable {
public:
ControlSet();
virtual ~ControlSet() {}
-
+
virtual boost::shared_ptr<Evoral::Control>
control_factory(const Evoral::Parameter& id) = 0;
-
+
boost::shared_ptr<Control>
control (const Parameter& id, bool create_if_missing=false);
@@ -57,12 +57,12 @@ public:
virtual void add_control(boost::shared_ptr<Control>);
bool find_next_event(FrameTime start, FrameTime end, ControlEvent& ev) const;
-
+
virtual bool controls_empty() const { return _controls.size() == 0; }
virtual void clear_controls();
void what_has_data(std::set<Parameter>&) const;
-
+
Glib::Mutex& control_lock() const { return _control_lock; }
protected: