qt5base-lts/examples/xml
Olivier Goffart 3b0c2b7c1b Examples: Add Q_DECL_OVERRIDE to overridden functions
Q_DECL_OVERRIDE (which expands to 'override' for supported compiler)
helps to declare the intent (that it is an overridden function) and
force compilation error when there is no such virtual function in the
base class.
The examples should show the best practice of having it, as it may save
the programmer quite some time in case of change of API or typo in the
function name or arguments.

This change was done automatically with
clang-modernize -add-override -override-macros

And fixed MSVC compilation by removing inline for TorrentViewDelegate::paint

Change-Id: Ice66ae93fae571266f908703d5b8892b2c1ebb1a
Reviewed-by: Jędrzej Nowacki <jedrzej.nowacki@digia.com>
2014-07-15 08:44:44 +02:00
..
dombookmarks Doc: Move XML example documentation to correct location 2013-12-20 10:37:43 +01:00
htmlinfo Merge branch 'release' into stable 2013-01-31 18:55:53 +01:00
rsslisting Merge branch 'release' into stable 2013-01-31 18:55:53 +01:00
saxbookmarks Examples: Add Q_DECL_OVERRIDE to overridden functions 2014-07-15 08:44:44 +02:00
streambookmarks Doc: moved streambookmarks example files 2014-07-08 14:38:30 +02:00
xmlstreamlint Doc: Move XML example documentation to correct location 2013-12-20 10:37:43 +01:00
README Remove references to demos from docs. 2011-07-05 19:57:54 +02:00
xml.pro Check for network module when building according examples 2013-02-21 07:27:25 +01:00

XML parsing and handling is supported through SAX and DOM compliant APIs.

Qt's SAX compliant classes allow you to parse XML incrementally; the DOM
classes enable more complex document-level operations to be performed on
XML files.


Documentation for these examples can be found via the Examples
link in the main Qt documentation.