Skip to content

Commit 2307559

Browse files
updated doxygen docs.
1 parent 232ea76 commit 2307559

File tree

5 files changed

+25
-1
lines changed

5 files changed

+25
-1
lines changed

Doxyfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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
201202
EXCLUDE_SYMLINKS = NO
202203
EXCLUDE_PATTERNS = src/moc_*.cpp

src/taccessvalidator.h

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
*/

src/tcookie.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
*/

src/tcookiejar.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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
/*!

src/tsqlormapper.h

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@
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

1420
class TAbstractSqlORMapper : public QSqlTableModel {
1521
public:
@@ -43,7 +49,6 @@ class TAbstractSqlORMapper : public QSqlTableModel {
4349
\sa TSqlObject, TCriteria
4450
*/
4551

46-
4752
template <class T>
4853
class TSqlORMapper : public TAbstractSqlORMapper {
4954
public:

0 commit comments

Comments
 (0)