File tree Expand file tree Collapse file tree 5 files changed +25
-1
lines changed Expand file tree Collapse file tree 5 files changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -197,6 +197,7 @@ EXCLUDE = src/test \
197197 src/tcacheredisstore.h \
198198 src/tcachesqlitestore.h \
199199 src/tcachestore.h \
200+ src/tabstractactioncontext.h \
200201 src/ttextview.h
201202EXCLUDE_SYMLINKS = NO
202203EXCLUDE_PATTERNS = src/moc_*.cpp
Original file line number Diff line number Diff line change @@ -55,3 +55,14 @@ class T_CORE_EXPORT TAccessValidator {
5555 QList<AccessRule> accessRules;
5656};
5757
58+
59+ /* !
60+ \class TAccessValidator
61+ \brief The TAccessValidator class provides the functionality of a validation
62+ for form data.
63+ */
64+
65+ /* !
66+ \class TAccessValidator::AccessRule
67+ \brief The AccessRule class represents an access rule.
68+ */
Original file line number Diff line number Diff line change @@ -29,3 +29,9 @@ class TCookie : public QNetworkCookie {
2929 QByteArray _sameSite;
3030};
3131
32+
33+ /* !
34+ \class TCookie
35+ \brief The TCookie class holds one network cookie.
36+ \sa TCookieJar
37+ */
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ uint qHash(const TCookie &key)
1818/* !
1919 \class TCookieJar
2020 \brief The TCookieJar class holds network cookies.
21+ \sa TCookie
2122*/
2223
2324/* !
Original file line number Diff line number Diff line change 1010#include < TSqlObject>
1111#include < TSqlQuery>
1212
13+ /* !
14+ \class TAbstractSqlORMapper
15+ \brief The TAbstractSqlORMapper class is the abstract base class of
16+ functionality to object-relational mapping.
17+ \sa TSqlORMapper
18+ */
1319
1420class TAbstractSqlORMapper : public QSqlTableModel {
1521public:
@@ -43,7 +49,6 @@ class TAbstractSqlORMapper : public QSqlTableModel {
4349 \sa TSqlObject, TCriteria
4450*/
4551
46-
4752template <class T >
4853class TSqlORMapper : public TAbstractSqlORMapper {
4954public:
You can’t perform that action at this time.
0 commit comments