diff options
Diffstat (limited to 'src/engine/InputPort.hpp')
-rw-r--r-- | src/engine/InputPort.hpp | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/engine/InputPort.hpp b/src/engine/InputPort.hpp index 4471bb8c..65912881 100644 --- a/src/engine/InputPort.hpp +++ b/src/engine/InputPort.hpp @@ -24,7 +24,6 @@ #include "raul/List.hpp" #include "raul/SharedPtr.hpp" #include "PortImpl.hpp" -using std::string; namespace Ingen { @@ -47,13 +46,13 @@ class NodeImpl; class InputPort : virtual public PortImpl { public: - InputPort(NodeImpl* parent, - const string& name, - uint32_t index, - uint32_t poly, - DataType type, - const Raul::Atom& value, - size_t buffer_size); + InputPort(NodeImpl* parent, + const std::string& name, + uint32_t index, + uint32_t poly, + Shared::DataType type, + const Raul::Atom& value, + size_t buffer_size); virtual ~InputPort() {} |