From 698c38587bd4f0133a132dc363098ff8298ec47b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 11 May 2009 18:05:24 +0000 Subject: * New ontology. * Display human names on patch ports on creation, if enabled. * Fix copy/paste of subpatches. * Split properties into "properties" (class properties) and "variables" (instance properties). * Names are kind of a legacy leftover... * Remove special set poly / enable / etc events in favour of just setting properties (less API, extensible, RDF compatible). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1973 a436a847-0d15-0410-975c-d299462d15a1 --- src/common/interface/GraphObject.hpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/common/interface') diff --git a/src/common/interface/GraphObject.hpp b/src/common/interface/GraphObject.hpp index eac5bf86..d4483b91 100644 --- a/src/common/interface/GraphObject.hpp +++ b/src/common/interface/GraphObject.hpp @@ -43,16 +43,14 @@ class GraphObject : public Raul::Deletable , public virtual Resource { public: - typedef std::map Variables; - typedef Raul::PathTable< SharedPtr >::const_iterator const_iterator; virtual void set_path(const Raul::Path& path) = 0; virtual const Raul::Path path() const = 0; virtual const Raul::Symbol symbol() const = 0; - virtual const Variables& variables() const = 0; - virtual Variables& variables() = 0; + virtual const Properties& variables() const = 0; + virtual Properties& variables() = 0; virtual bool polyphonic() const = 0; // FIXME: return WeakPtr, and stupid name -- cgit v1.2.1