summaryrefslogtreecommitdiffstats
path: root/include/ingen/Port.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-10-03 02:18:42 +0000
committerDavid Robillard <d@drobilla.net>2011-10-03 02:18:42 +0000
commit8768c927968c2541bcac763d9a4f237081eaca4b (patch)
tree214b29607be379f4cab4d254562a9949677c5848 /include/ingen/Port.hpp
parentaf70d4f1e0927ea3e89b78fdf0de4247a32a39b4 (diff)
downloadingen-8768c927968c2541bcac763d9a4f237081eaca4b.tar.gz
ingen-8768c927968c2541bcac763d9a4f237081eaca4b.tar.bz2
ingen-8768c927968c2541bcac763d9a4f237081eaca4b.zip
Remove static PortType enumeration from public/client side interface.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3523 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'include/ingen/Port.hpp')
-rw-r--r--include/ingen/Port.hpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/ingen/Port.hpp b/include/ingen/Port.hpp
index 5d04d0f1..6780f635 100644
--- a/include/ingen/Port.hpp
+++ b/include/ingen/Port.hpp
@@ -23,7 +23,6 @@
#include <set>
#include "ingen/GraphObject.hpp"
-#include "ingen/PortType.hpp"
namespace Raul { class Atom; }
@@ -38,12 +37,6 @@ namespace Ingen {
class Port : public virtual GraphObject
{
public:
- typedef std::set<PortType> PortTypes;
-
- virtual const PortTypes& types() const = 0;
-
- inline bool is_a(PortType type) const { return types().find(type) != types().end(); }
-
virtual bool supports(const Raul::URI& value_type) const = 0;
virtual uint32_t index() const = 0;