diff options
author | David Robillard <d@drobilla.net> | 2012-07-30 23:00:13 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-07-30 23:00:13 +0000 |
commit | 0e1bf6ddfc77866ff6477a3f394c030c2a5e1b39 (patch) | |
tree | afcba1a0ba16837f7b6f1a4822b7164deccb61e7 /ingen/serialisation | |
parent | 921881813d7fb2e46a0e65d1e888f6cd9a928945 (diff) | |
download | ingen-0e1bf6ddfc77866ff6477a3f394c030c2a5e1b39.tar.gz ingen-0e1bf6ddfc77866ff6477a3f394c030c2a5e1b39.tar.bz2 ingen-0e1bf6ddfc77866ff6477a3f394c030c2a5e1b39.zip |
Eliminate pure virtual base classes Patch, Node, and Port, and the virtual inheritance they imposed.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4576 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ingen/serialisation')
-rw-r--r-- | ingen/serialisation/Serialiser.hpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/ingen/serialisation/Serialiser.hpp b/ingen/serialisation/Serialiser.hpp index ab080a3d..2dbc99b7 100644 --- a/ingen/serialisation/Serialiser.hpp +++ b/ingen/serialisation/Serialiser.hpp @@ -31,9 +31,6 @@ namespace Ingen { class Plugin; class GraphObject; -class Patch; -class Node; -class Port; class Edge; namespace Shared { @@ -59,8 +56,8 @@ public: virtual void to_file(SharedPtr<const GraphObject> object, const std::string& filename); - virtual void write_bundle(SharedPtr<const Patch> patch, - const std::string& path); + virtual void write_bundle(SharedPtr<const GraphObject> patch, + const std::string& path); virtual std::string to_string(SharedPtr<const GraphObject> object, const std::string& base_uri); |