Soprano
2.7.4
|
The most simple version of a StatementIterator simply iterates over a list of Statements. More...
#include <Soprano/Util/SimpleStatementIterator>
Public Member Functions | |
SimpleStatementIterator () | |
SimpleStatementIterator (const QList< Statement > &) | |
SimpleStatementIterator (const SimpleStatementIterator &) | |
virtual | ~SimpleStatementIterator () |
SimpleStatementIterator & | operator= (const QList< Statement > &) |
SimpleStatementIterator & | operator= (const SimpleStatementIterator &) |
The most simple version of a StatementIterator simply iterates over a list of Statements.
The SimpleStatementIterator has been designed as a trivial extension to StatementIterator and can be used as a drop-in-replacement as shown below:
QList<Statement> list; SimpleStatementIterator it( list ); // it and it2 iterate over the exact same data StatementIterator it2 = it;
Definition at line 53 of file simplestatementiterator.h.
virtual Soprano::Util::SimpleStatementIterator::~SimpleStatementIterator | ( | ) | [virtual] |
SimpleStatementIterator& Soprano::Util::SimpleStatementIterator::operator= | ( | const QList< Statement > & | ) |
SimpleStatementIterator& Soprano::Util::SimpleStatementIterator::operator= | ( | const SimpleStatementIterator & | ) |