diff options
Diffstat (limited to 'include/jau/function_def.hpp')
-rw-r--r-- | include/jau/function_def.hpp | 8 |
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 |