From e5b2164c84d0928ce0765386095064fd946744c2 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 11 May 2012 06:05:58 +0000 Subject: Generate API documentation. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4352 a436a847-0d15-0410-975c-d299462d15a1 --- ingen/serialisation/Parser.hpp | 13 +++++++++---- ingen/serialisation/Serialiser.hpp | 17 ++++++++++------- 2 files changed, 19 insertions(+), 11 deletions(-) (limited to 'ingen/serialisation') diff --git a/ingen/serialisation/Parser.hpp b/ingen/serialisation/Parser.hpp index ceaaa99c..5253a3e4 100644 --- a/ingen/serialisation/Parser.hpp +++ b/ingen/serialisation/Parser.hpp @@ -14,6 +14,10 @@ along with Ingen. If not, see . */ +/** + @defgroup IngenSerialisation Turtle Serialisation +*/ + #ifndef INGEN_SERIALISATION_PARSER_HPP #define INGEN_SERIALISATION_PARSER_HPP @@ -34,10 +38,11 @@ namespace Shared { class World; } namespace Serialisation { -/** Parse Ingen objects from RDF. - * - * \ingroup IngenSerialisation - */ +/** + Read Ingen objects from Turtle files or strings. + + @ingroup IngenSerialisation +*/ class Parser { public: explicit Parser(Shared::World& world); diff --git a/ingen/serialisation/Serialiser.hpp b/ingen/serialisation/Serialiser.hpp index b09c194a..ab080a3d 100644 --- a/ingen/serialisation/Serialiser.hpp +++ b/ingen/serialisation/Serialiser.hpp @@ -43,10 +43,11 @@ class Store; namespace Serialisation { -/** Serialises Ingen objects (patches, nodes, etc) to RDF. - * - * \ingroup IngenSerialisation - */ +/** + Write Ingen objects to Turtle files or strings. + + @ingroup IngenSerialisation +*/ class Serialiser { public: @@ -67,10 +68,12 @@ public: virtual void start_to_string(const Raul::Path& root, const std::string& base_uri); - virtual void serialise(SharedPtr object) throw (std::logic_error); + virtual void serialise(SharedPtr object) + throw (std::logic_error); - virtual void serialise_edge(const Sord::Node& parent, - SharedPtr c) throw (std::logic_error); + virtual void serialise_edge(const Sord::Node& parent, + SharedPtr c) + throw (std::logic_error); virtual std::string finish(); -- cgit v1.2.1