Some documentation for the settings database

This commit is contained in:
Thorbjørn Lindeijer
2009-05-20 10:55:27 +02:00
parent c9e88a968a
commit 8a28a98f9b
2 changed files with 29 additions and 4 deletions

View File

@@ -34,6 +34,18 @@
#include <QtSql/QSqlQuery>
#include <QDebug>
/*!
\class Core::SettingsDatabase
\brief An alternative to the application-wide QSettings that is more
suitable for storing large amounts of data.
The settings database is SQLite based, and lazily retrieves data when it
is asked for. It also does incremental updates of the database rather than
rewriting the whole file each time one of the settings change.
The SettingsDatabase API mimics that of QSettings.
*/
using namespace Core;
using namespace Core::Internal;