diff options
Diffstat (limited to 'ingen/LV2Features.hpp')
-rw-r--r-- | ingen/LV2Features.hpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ingen/LV2Features.hpp b/ingen/LV2Features.hpp index 34c43a79..80339c84 100644 --- a/ingen/LV2Features.hpp +++ b/ingen/LV2Features.hpp @@ -26,7 +26,7 @@ namespace Ingen { -class GraphObject; +class Node; class World; /** Features for use by LV2 plugins. @@ -40,8 +40,8 @@ public: public: virtual ~Feature() {} - virtual SharedPtr<LV2_Feature> feature(World* world, - GraphObject* block) = 0; + virtual SharedPtr<LV2_Feature> feature(World* world, + Node* block) = 0; }; class FeatureArray : public Raul::Noncopyable { @@ -61,8 +61,8 @@ public: void add_feature(SharedPtr<Feature> feature); - SharedPtr<FeatureArray> lv2_features(World* world, - GraphObject* block) const; + SharedPtr<FeatureArray> lv2_features(World* world, + Node* block) const; private: typedef std::vector< SharedPtr<Feature> > Features; |