|
bool | read () |
|
| ReaderPrivate (const char *FileName, std::istream &is) |
|
bool | isValid () const |
|
bool | isVerbose () const |
|
void | setVerbose (bool on) |
|
| XMLReader (const char *FileName, std::istream &) |
| open the file and read the first element More...
|
|
| ~XMLReader () |
|
const char * | localName () const |
| get the local name of the current Element More...
|
|
int | level () const |
| get the current element level More...
|
|
void | readElement (const char *ElementName=nullptr) |
| read until a start element is found (<name>) or start-end element (<name/>) (with special name if given) More...
|
|
void | readEndElement (const char *ElementName=nullptr, int level=-1) |
| read until an end element is found More...
|
|
void | readCharacters () |
| read until characters are found More...
|
|
void | readBinFile (const char *) |
| read binary file More...
|
|
unsigned int | getAttributeCount () const |
| get the number of attributes of the current element More...
|
|
bool | hasAttribute (const char *AttrName) const |
| check if the read element has a special attribute More...
|
|
long | getAttributeAsInteger (const char *AttrName) const |
| return the named attribute as an interer (does type checking) More...
|
|
unsigned long | getAttributeAsUnsigned (const char *AttrName) const |
|
double | getAttributeAsFloat (const char *AttrName) const |
| return the named attribute as a double floating point (does type checking) More...
|
|
const char * | getAttribute (const char *AttrName) const |
| return the named attribute as a double floating point (does type checking) More...
|
|
const char * | addFile (const char *Name, Base::Persistence *Object) |
| add a read request of a persistent object More...
|
|
void | readFiles (zipios::ZipInputStream &zipstream) const |
| process the requested file writes More...
|
|
const std::vector< std::string > & | getFilenames () const |
| get all registered file names More...
|
|
bool | isRegistered (Base::Persistence *Object) const |
|
virtual void | addName (const char *, const char *) |
|
virtual const char * | getName (const char *) const |
|
virtual bool | doNameMapping () const |
|
void | setPartialRestore (bool on) |
| sets simultaneously the global and local PartialRestore bits More...
|
|
void | clearPartialRestoreDocumentObject () |
|
void | clearPartialRestoreProperty () |
|
void | clearPartialRestoreObject () |
|
bool | testStatus (ReaderStatus pos) const |
| return the status bits More...
|
|
void | setStatus (ReaderStatus pos, bool on) |
| set the status bits More...
|
|