summaryrefslogtreecommitdiffstats
path: root/src/engine/Driver.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/Driver.hpp')
-rw-r--r--src/engine/Driver.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/Driver.hpp b/src/engine/Driver.hpp
index e03c316d..5493fdb8 100644
--- a/src/engine/Driver.hpp
+++ b/src/engine/Driver.hpp
@@ -71,7 +71,7 @@ protected:
class Driver : boost::noncopyable
{
public:
- Driver(DataType type)
+ Driver(Shared::DataType type)
: _type(type)
{}
@@ -95,7 +95,7 @@ public:
virtual Raul::List<DriverPort*>::Node* remove_port(const Raul::Path& path) = 0;
protected:
- DataType _type;
+ Shared::DataType _type;
};