summaryrefslogtreecommitdiffstats
path: root/src/common/interface/Port.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/interface/Port.hpp')
-rw-r--r--src/common/interface/Port.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/interface/Port.hpp b/src/common/interface/Port.hpp
index 884b10e3..c7029095 100644
--- a/src/common/interface/Port.hpp
+++ b/src/common/interface/Port.hpp
@@ -20,7 +20,7 @@
#include <stdint.h>
#include "GraphObject.hpp"
-#include "DataType.hpp"
+#include "PortType.hpp"
namespace Raul { class Atom; }
@@ -39,7 +39,7 @@ class Port : public virtual GraphObject
public:
virtual uint32_t index() const = 0;
virtual bool is_input() const = 0;
- virtual Shared::DataType type() const = 0;
+ virtual Shared::PortType type() const = 0;
virtual const Raul::Atom& value() const = 0;
};