summaryrefslogtreecommitdiffstats
path: root/src/common/interface
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-05-13 04:44:01 +0000
committerDavid Robillard <d@drobilla.net>2009-05-13 04:44:01 +0000
commit5268059f5d4ca9325a78da688a7622898354215a (patch)
treeebf19a912d4bf98966b3bf7c289059b0644bf47e /src/common/interface
parent19928bb583e72802746b89e322f71ecc0fcb7427 (diff)
downloadingen-5268059f5d4ca9325a78da688a7622898354215a.tar.gz
ingen-5268059f5d4ca9325a78da688a7622898354215a.tar.bz2
ingen-5268059f5d4ca9325a78da688a7622898354215a.zip
Remove 'using' declarations from headers.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1993 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/common/interface')
-rw-r--r--src/common/interface/DataType.hpp2
-rw-r--r--src/common/interface/EventType.hpp2
-rw-r--r--src/common/interface/Port.hpp2
3 files changed, 1 insertions, 5 deletions
diff --git a/src/common/interface/DataType.hpp b/src/common/interface/DataType.hpp
index c2ef6674..80d3e5e9 100644
--- a/src/common/interface/DataType.hpp
+++ b/src/common/interface/DataType.hpp
@@ -89,6 +89,4 @@ private:
} // namespace Shared
} // namespace Ingen
-using Ingen::Shared::DataType;
-
#endif // DATATYPE_H
diff --git a/src/common/interface/EventType.hpp b/src/common/interface/EventType.hpp
index d74835e6..6d662b7e 100644
--- a/src/common/interface/EventType.hpp
+++ b/src/common/interface/EventType.hpp
@@ -74,6 +74,4 @@ private:
} // namespace Shared
} // namespace Ingen
-using Ingen::Shared::EventType;
-
#endif // EVENTTYPE_H
diff --git a/src/common/interface/Port.hpp b/src/common/interface/Port.hpp
index f4d7ea67..09a886f1 100644
--- a/src/common/interface/Port.hpp
+++ b/src/common/interface/Port.hpp
@@ -38,7 +38,7 @@ class Port : public virtual GraphObject
public:
virtual uint32_t index() const = 0;
virtual bool is_input() const = 0;
- virtual DataType type() const = 0;
+ virtual Shared::DataType type() const = 0;
virtual const Raul::Atom& value() const = 0;
};