Soprano::Model* model = Soprano::createModel();
2. Fill it with statements:
model->addStatement( Soprano::Statement( QUrl( "http://mysite.org/data#A"), Soprano::Vocabulary::RDFS::label(), Soprano::LiteraValue( "A test resource" ) ) );
3. Read the data back:
Soprano::StatementIterator it = model->listStatements(); while( it.next() ) { displayStatement( *it ); }