Skip to content
This repository was archived by the owner on Mar 21, 2024. It is now read-only.

Commit 583ab49

Browse files
committed
Docs/Doxybook: Add examples of \param and \tparam to the Doxybook rendering
test.
1 parent 62a4b23 commit 583ab49

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

testing/docs/doxybook_test.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ void test_predefined_friend_function();
4444
*
4545
* It does many things.
4646
*
47+
* \tparam T A template parameter.
48+
* \tparam U Another template parameter.
49+
*
4750
* \see test_function
4851
*/
4952
template <typename T, typename U>
@@ -141,6 +144,11 @@ class test_derived_class : test_class<int, double>
141144

142145
/*! \brief \c test_function is a function intended to exercise and test Doxybook
143146
* rendering.
147+
*
148+
* \tparam T A template parameter.
149+
*
150+
* \param a A function parameter.
151+
* \param b A function parameter.
144152
*/
145153
template <typename T>
146154
void test_function(T const& a, test_class<T, T const>&& b);

0 commit comments

Comments
 (0)