summaryrefslogtreecommitdiff
path: root/libs/ardour
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-09-29 20:50:21 +0000
committerDavid Robillard <d@drobilla.net>2008-09-29 20:50:21 +0000
commit03f188cc8b17edc7c727f62b22b4577a2fdbfbe8 (patch)
treeabdd6c28a83c1de0317b96c9cee1a9f6a8bb1cc2 /libs/ardour
parent80608f7594a2eafb19e7c2fc8d29a58605b820b0 (diff)
Remove ARDOUR::Parameter::is_integer.
git-svn-id: svn://localhost/ardour2/branches/3.0@3837 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour')
-rw-r--r--libs/ardour/ardour/event_type_map.h2
-rw-r--r--libs/ardour/ardour/parameter.h4
-rw-r--r--libs/ardour/event_type_map.cc7
3 files changed, 9 insertions, 4 deletions
diff --git a/libs/ardour/ardour/event_type_map.h b/libs/ardour/ardour/event_type_map.h
index 6736feeb86..4d7180c028 100644
--- a/libs/ardour/ardour/event_type_map.h
+++ b/libs/ardour/ardour/event_type_map.h
@@ -31,6 +31,8 @@ public:
uint8_t parameter_midi_type(const Evoral::Parameter& param) const;
uint32_t midi_event_type(uint8_t status) const;
+ bool is_integer(const Evoral::Parameter& param) const;
+
static EventTypeMap& instance() { return event_type_map; }
private:
diff --git a/libs/ardour/ardour/parameter.h b/libs/ardour/ardour/parameter.h
index edb157ed57..a9aa051924 100644
--- a/libs/ardour/ardour/parameter.h
+++ b/libs/ardour/ardour/parameter.h
@@ -93,10 +93,6 @@ public:
std::string symbol() const;
- inline bool is_integer() const {
- return (_type >= MidiCCAutomation && _type <= MidiChannelPressureAutomation);
- }
-
inline operator Parameter() { return (Parameter)*this; }
};
diff --git a/libs/ardour/event_type_map.cc b/libs/ardour/event_type_map.cc
index cd78fd02f7..2d724a26ef 100644
--- a/libs/ardour/event_type_map.cc
+++ b/libs/ardour/event_type_map.cc
@@ -57,5 +57,12 @@ EventTypeMap::midi_event_type(uint8_t status) const
}
}
+bool
+EventTypeMap::is_integer(const Evoral::Parameter& param) const
+{
+ return ( param.type() >= MidiCCAutomation
+ && param.type() <= MidiChannelPressureAutomation);
+}
+
} // namespace ARDOUR