summaryrefslogtreecommitdiffstats
path: root/src/serialisation/Parser.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-05-11 18:05:24 +0000
committerDavid Robillard <d@drobilla.net>2009-05-11 18:05:24 +0000
commit698c38587bd4f0133a132dc363098ff8298ec47b (patch)
treeabcab2ab196d995fbcc52a4e62c4f5d496b6a754 /src/serialisation/Parser.hpp
parent9ea901df533b0326e715ced10b9e9970239da515 (diff)
downloadingen-698c38587bd4f0133a132dc363098ff8298ec47b.tar.gz
ingen-698c38587bd4f0133a132dc363098ff8298ec47b.tar.bz2
ingen-698c38587bd4f0133a132dc363098ff8298ec47b.zip
* 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
Diffstat (limited to 'src/serialisation/Parser.hpp')
-rw-r--r--src/serialisation/Parser.hpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/serialisation/Parser.hpp b/src/serialisation/Parser.hpp
index 7b5acede..6fbb8be6 100644
--- a/src/serialisation/Parser.hpp
+++ b/src/serialisation/Parser.hpp
@@ -46,7 +46,7 @@ public:
boost::optional<Raul::Path> data_path=boost::optional<Raul::Path>(),
boost::optional<Raul::Path> parent=boost::optional<Raul::Path>(),
boost::optional<Raul::Symbol> symbol=boost::optional<Raul::Symbol>(),
- boost::optional<GraphObject::Variables> data=boost::optional<GraphObject::Variables>());
+ boost::optional<GraphObject::Properties> data=boost::optional<GraphObject::Properties>());
virtual bool parse_string(
Ingen::Shared::World* world,
@@ -56,7 +56,7 @@ public:
boost::optional<Raul::Path> data_path=boost::optional<Raul::Path>(),
boost::optional<Raul::Path> parent=boost::optional<Raul::Path>(),
boost::optional<Raul::Symbol> symbol=boost::optional<Raul::Symbol>(),
- boost::optional<GraphObject::Variables> data=boost::optional<GraphObject::Variables>());
+ boost::optional<GraphObject::Properties> data=boost::optional<GraphObject::Properties>());
virtual bool parse_update(
Ingen::Shared::World* world,
@@ -66,7 +66,7 @@ public:
boost::optional<Raul::Path> data_path=boost::optional<Raul::Path>(),
boost::optional<Raul::Path> parent=boost::optional<Raul::Path>(),
boost::optional<Raul::Symbol> symbol=boost::optional<Raul::Symbol>(),
- boost::optional<GraphObject::Variables> data=boost::optional<GraphObject::Variables>());
+ boost::optional<GraphObject::Properties> data=boost::optional<GraphObject::Properties>());
private:
boost::optional<Raul::Path> parse(
@@ -77,7 +77,7 @@ private:
boost::optional<Raul::Path> data_path=boost::optional<Raul::Path>(),
boost::optional<Raul::Path> parent=boost::optional<Raul::Path>(),
boost::optional<Raul::Symbol> symbol=boost::optional<Raul::Symbol>(),
- boost::optional<GraphObject::Variables> data=boost::optional<GraphObject::Variables>());
+ boost::optional<GraphObject::Properties> data=boost::optional<GraphObject::Properties>());
boost::optional<Raul::Path> parse_patch(
Ingen::Shared::World* world,
@@ -86,7 +86,7 @@ private:
const Redland::Node& subject,
boost::optional<Raul::Path> parent=boost::optional<Raul::Path>(),
boost::optional<Raul::Symbol> symbol=boost::optional<Raul::Symbol>(),
- boost::optional<GraphObject::Variables> data=boost::optional<GraphObject::Variables>());
+ boost::optional<GraphObject::Properties> data=boost::optional<GraphObject::Properties>());
boost::optional<Raul::Path> parse_node(
Ingen::Shared::World* world,
@@ -94,7 +94,7 @@ private:
Redland::Model& model,
const Redland::Node& subject,
const Raul::Path& path,
- boost::optional<GraphObject::Variables> data=boost::optional<GraphObject::Variables>());
+ boost::optional<GraphObject::Properties> data=boost::optional<GraphObject::Properties>());
boost::optional<Raul::Path> parse_port(
Ingen::Shared::World* world,
@@ -102,7 +102,7 @@ private:
Redland::Model& model,
const Redland::Node& subject,
const Raul::Path& path,
- boost::optional<GraphObject::Variables> data=boost::optional<GraphObject::Variables>());
+ boost::optional<GraphObject::Properties> data=boost::optional<GraphObject::Properties>());
bool parse_variables(
Ingen::Shared::World* world,
@@ -110,7 +110,7 @@ private:
Redland::Model& model,
const Redland::Node& subject,
const Raul::Path& path,
- boost::optional<GraphObject::Variables> data=boost::optional<GraphObject::Variables>());
+ boost::optional<GraphObject::Properties> data=boost::optional<GraphObject::Properties>());
bool parse_connections(
Ingen::Shared::World* world,