diff options
Diffstat (limited to 'src/engine/Driver.hpp')
-rw-r--r-- | src/engine/Driver.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine/Driver.hpp b/src/engine/Driver.hpp index ad8fd8c3..9445d9dd 100644 --- a/src/engine/Driver.hpp +++ b/src/engine/Driver.hpp @@ -21,7 +21,7 @@ #include <string> #include <boost/utility.hpp> #include "raul/Deletable.hpp" -#include "interface/DataType.hpp" +#include "interface/PortType.hpp" #include "DuplexPort.hpp" namespace Raul { class Path; } @@ -71,7 +71,7 @@ protected: class Driver : boost::noncopyable { public: - Driver(Shared::DataType type) + Driver(Shared::PortType type) : _type(type) {} @@ -95,7 +95,7 @@ public: virtual Raul::List<DriverPort*>::Node* remove_port(const Raul::Path& path) = 0; protected: - Shared::DataType _type; + Shared::PortType _type; }; |