mirror of https://github.com/qt/qtbase.git
16 lines
404 B
Plaintext
16 lines
404 B
Plaintext
|
# Macros for documenting repetitive aspects of C++ classes
|
||
|
|
||
|
# Sort groups alphabetically
|
||
|
|
||
|
#
|
||
|
# Macros for swap()
|
||
|
#
|
||
|
|
||
|
# \memberswap{what}
|
||
|
# what - a prose version of the type of object (e.g. "string", "collator", "pen")
|
||
|
# The function's argument name must be \a other.
|
||
|
macro.memberswap = \
|
||
|
"\n\n" \
|
||
|
"Swaps \1 \\a{other} with this \1. This operation is very fast and never fails." \
|
||
|
"\n\n"
|