diff options
Diffstat (limited to 'ingen/shared')
-rw-r--r-- | ingen/shared/LV2Features.hpp | 6 | ||||
-rw-r--r-- | ingen/shared/URIMap.hpp | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ingen/shared/LV2Features.hpp b/ingen/shared/LV2Features.hpp index 76d64b42..822df818 100644 --- a/ingen/shared/LV2Features.hpp +++ b/ingen/shared/LV2Features.hpp @@ -26,7 +26,7 @@ namespace Ingen { -class Node; +class GraphObject; namespace Shared { @@ -44,7 +44,7 @@ public: virtual ~Feature() {} virtual SharedPtr<LV2_Feature> feature(Shared::World* world, - Node* node) = 0; + GraphObject* node) = 0; }; class FeatureArray : public Raul::Noncopyable { @@ -65,7 +65,7 @@ public: void add_feature(SharedPtr<Feature> feature); SharedPtr<FeatureArray> lv2_features(Shared::World* world, - Node* node) const; + GraphObject* node) const; private: typedef std::vector< SharedPtr<Feature> > Features; diff --git a/ingen/shared/URIMap.hpp b/ingen/shared/URIMap.hpp index bb3e55be..d30b843d 100644 --- a/ingen/shared/URIMap.hpp +++ b/ingen/shared/URIMap.hpp @@ -46,7 +46,7 @@ public: _feature.data = data; } - SharedPtr<LV2_Feature> feature(Shared::World*, Node*) { + SharedPtr<LV2_Feature> feature(Shared::World*, GraphObject*) { return SharedPtr<LV2_Feature>(&_feature, NullDeleter<LV2_Feature>); } |