summaryrefslogtreecommitdiffstats
path: root/src/engine/Driver.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-11-18 00:38:45 +0000
committerDavid Robillard <d@drobilla.net>2009-11-18 00:38:45 +0000
commit6ec390d53a3dbea90e7308c9e40e03266f5d5127 (patch)
tree964973527778b5b2b28f8a5ebf63057fb7651d36 /src/engine/Driver.hpp
parent1a725c0811fd15900464e1eff429c6ead90805d4 (diff)
downloadingen-6ec390d53a3dbea90e7308c9e40e03266f5d5127.tar.gz
ingen-6ec390d53a3dbea90e7308c9e40e03266f5d5127.tar.bz2
ingen-6ec390d53a3dbea90e7308c9e40e03266f5d5127.zip
Rename DataType to PortType (since that's what it really means).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2273 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/Driver.hpp')
-rw-r--r--src/engine/Driver.hpp6
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;
};