|
libodsstream
Library for mass spectrometry
|
#include <odsdochandlerinterface.h>
Public Member Functions | |
| virtual void | startSheet (const QString &sheet_name)=0 |
| virtual void | endSheet ()=0 |
| virtual void | startLine ()=0 |
| virtual void | endLine ()=0 |
| virtual void | setCell (const OdsCell &)=0 |
| virtual void | endDocument ()=0 |
Definition at line 42 of file odsdochandlerinterface.h.
|
pure virtual |
callback that report the end of the ODS document. Override it if you need to know that reading is finished.
Referenced by OdsDocReader::endDocument(), TsvReader::parse(), and TsvReader::parse().
|
pure virtual |
callback that indicates a line ending. Override it if needed.
Referenced by OdsDocReader::endLine(), and TsvReader::readCsvRow().
|
pure virtual |
callback that indicates the end of the current data sheet. Override it if needed
Referenced by OdsDocReader::endSheet().
|
pure virtual |
callback that report the content of the current cell in a dedicated Cell object. Override it if you need to retrieve cell content.
Referenced by TsvReader::readCsvRow(), and OdsDocReader::setCell().
|
pure virtual |
callback that indicates a new line start. Override it if needed.
Referenced by TsvReader::readCsvRow(), and OdsDocReader::startLine().
|
pure virtual |
callback that indicates the begining of a data sheet. Override it in order to retrieve information about the current data sheet.
Referenced by TsvReader::parse(), and OdsDocReader::startSheet().