This commit is contained in:
Klaus Basan
2017-12-17 19:59:09 +01:00
parent e28f8f20d3
commit cca275b278
6 changed files with 25 additions and 15 deletions

View File

@@ -14,13 +14,19 @@
*/
/*!
* \namespace BlackCore::Settings
* Core settings traits.
* \namespace BlackCore::Data
* Core data traits (aka cached values) and classes.
*/
/*!
* \namespace BlackCore::Data
* Core data traits (aka cached values) and classes.
* \namespace BlackCore::Db
* Classes interacting with the swift database (aka "datastore"). This includes the readers and related classes.
* Related model classes can be found in BlackMisc::Db
*/
/*!
* \namespace BlackCore::Settings
* Core settings traits.
*/
/*!

View File

@@ -23,9 +23,7 @@ namespace BlackCore
{
namespace Db
{
/**
* Reader for airport database.
*/
//! Reader for airport database data.
class BLACKCORE_EXPORT CAirportDataReader : public CDatabaseReader
{
Q_OBJECT

View File

@@ -23,9 +23,7 @@ namespace BlackCore
{
namespace Db
{
/**
* Update and consolidation of DB data
*/
//! Update and consolidation of DB data
class BLACKCORE_EXPORT CBackgroundDataUpdater : public BlackMisc::CContinuousWorker
{
Q_OBJECT

View File

@@ -21,13 +21,13 @@
#include <QString>
class QNetworkReply;
namespace BlackMisc { namespace Network { class CAuthenticatedUser; } }
namespace BlackMisc { namespace Network { class CAuthenticatedUser; } }
namespace BlackCore
{
namespace Db
{
//! Databse user used with swift DB. Features role and cookie handling.
//! Database user used with swift DB. Features role and cookie handling.
class BLACKCORE_EXPORT CDatabaseAuthenticationService: public QObject
{
Q_OBJECT

View File

@@ -22,9 +22,7 @@ namespace BlackCore
{
namespace Db
{
/**
* Monitoring the swift DB, internet access, shared URL
*/
//! Monitoring the swift DB, internet access, shared URLs
class CNetworkWatchdog : public BlackMisc::CContinuousWorker
{
Q_OBJECT