diff options
Diffstat (limited to 'src/libs/client/Serializer.hpp')
-rw-r--r-- | src/libs/client/Serializer.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/client/Serializer.hpp b/src/libs/client/Serializer.hpp index fafedfa5..7a739f94 100644 --- a/src/libs/client/Serializer.hpp +++ b/src/libs/client/Serializer.hpp @@ -39,12 +39,12 @@ namespace Shared { class GraphObject; class Node; class Port; + class Connection; } namespace Client { class PatchModel; -class ConnectionModel; /** Serializes Ingen objects (patches, nodes, etc) to RDF. @@ -61,7 +61,7 @@ public: void start_to_string(); void serialize(SharedPtr<GraphObject> object) throw (std::logic_error); - void serialize_connection(SharedPtr<ConnectionModel> c) throw (std::logic_error); + void serialize_connection(SharedPtr<Shared::Connection> c) throw (std::logic_error); string finish(); private: |