summaryrefslogtreecommitdiffstats
path: root/include/jau/function_def.hpp
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2022-05-01 22:11:53 +0200
committerSven Gothel <[email protected]>2022-05-01 22:11:53 +0200
commit987f698885baba78353361a0cb913e726c7be9d6 (patch)
treec6712d2e126f7e659bbec938a9fe07f0c84b7a57 /include/jau/function_def.hpp
parentd3941db9889d59e777e1ca76cbeabebc3ab8ebb3 (diff)
Doxygen: Add Modules: Group related things together: Algorithms, ByteUtils, CppLang, DataStructs, Concurrency, Floats, Fractions, Integrals, JavaJVM, Network, Stringv0.9.2
Diffstat (limited to 'include/jau/function_def.hpp')
-rw-r--r--include/jau/function_def.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/jau/function_def.hpp b/include/jau/function_def.hpp
index c2dcb54..e3ff889 100644
--- a/include/jau/function_def.hpp
+++ b/include/jau/function_def.hpp
@@ -37,6 +37,12 @@
namespace jau {
+ /** @defgroup FunctionPtr Function pointer support
+ * Function pointer support inclusive capturing lambdas.
+ *
+ * @{
+ */
+
enum class FunctionType : int {
Null = 0,
Class = 1,
@@ -470,6 +476,8 @@ namespace jau {
return FunctionDef<R, A...>( new StdInvocationFunc<R, A...>(id) );
}
+ /**@}*/
+
} // namespace jau
/** \example test_functiondef01.cpp