QFileSystemEngine: add a brief description

May be helpful for the next dev to read this code.

Change-Id: I26947984c67d21bd989883e5a9439e2675fec180
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
This commit is contained in:
Ahmad Samir 2024-03-24 18:51:26 +02:00
parent b6ab002b3b
commit 2f35f69985

View File

@ -13,6 +13,21 @@
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE
/*! \class QFileSystemEngine
\internal
QFileSystemEngine offers OS-independent API for native system library
methods, which work with files on physical disk drives; using such methods
directly is faster than using a custom file engine (see QAbstractFileEngine
and its sub-classes). Typically, you need a custom file engine when working
with virtual file systems (for example QResource). Various Qt classes,
for example QDir, QFile, and QFileInfo, can handle both types of files by
detecting the file path scheme, for example, \c file:///, \c :/someresource
(QResource).
\sa QAbstractFileEngine, QAbstractFileEngineHandler, QFSFileEngine, QResourceFileEngine
*/
/*! /*!
\internal \internal