diff options
author | David Robillard <d@drobilla.net> | 2007-02-24 02:48:12 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-02-24 02:48:12 +0000 |
commit | 72a91851b2d33e76937702579ef8c3efb9825aa9 (patch) | |
tree | 8532d3a3fb7e958da61f0cabdea52d4a0805018f /src/RDFWriter.cpp | |
parent | b3d241d408b3f07f16ee8cef0a2a36078f9a95eb (diff) | |
download | raul-72a91851b2d33e76937702579ef8c3efb9825aa9.tar.gz raul-72a91851b2d33e76937702579ef8c3efb9825aa9.tar.bz2 raul-72a91851b2d33e76937702579ef8c3efb9825aa9.zip |
Split JackDriver 'attaching' and 'activating' to give derived classes a chance to set things up in overloaded attach methods before the process callback starts firing.
Switch RDF syntax to RDF/XML (temporarily, until raptor 1.1.14 hits distros).
git-svn-id: http://svn.drobilla.net/lad/raul@333 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/RDFWriter.cpp')
-rw-r--r-- | src/RDFWriter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/RDFWriter.cpp b/src/RDFWriter.cpp index 33bc220..f2d5626 100644 --- a/src/RDFWriter.cpp +++ b/src/RDFWriter.cpp @@ -26,8 +26,8 @@ using namespace std; namespace Raul { -//static const char* const RDF_LANG = "rdfxml-abbrev"; -static const char* const RDF_LANG = "turtle"; +static const char* const RDF_LANG = "rdfxml-abbrev"; +//static const char* const RDF_LANG = "turtle"; RDFWriter::RDFWriter() |