File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 5
5
*
6
6
* @copyright Copyright (c) 2023 Vanier Robotics (MIT License)
7
7
*
8
- * @example
8
+ * Example Usage:
9
+ * @code
9
10
* class ExampleClass
10
11
* {
11
12
* public:
45
46
* aex::Function<void()> exampleFunction2([]() -> void { Serial.println("Lambda Function"); };
46
47
* exampleFunction2(); // Will write "Lambda Function" to the console
47
48
* }
49
+ * @endcode
48
50
*/
49
51
50
52
#ifndef _INCLUDE_AEX_FUNCTIONAL_H_
@@ -57,6 +59,8 @@ namespace aex
57
59
58
60
/* *
59
61
* @brief Allow for template specialization of the Function class
62
+ *
63
+ * @see Function<R(Args...)>
60
64
*/
61
65
template <class ... Args> class Function ;
62
66
@@ -66,7 +70,7 @@ namespace priv
66
70
/* *
67
71
* @brief Allow for template specialization of the Callable classes
68
72
*
69
- * @todo : Add a callable for const functions?
73
+ * Todo : Add a callable for const functions?
70
74
*/
71
75
template <class ...> class Callable ;
72
76
template <class ...> class FunctionCallable ;
You can’t perform that action at this time.
0 commit comments