Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: STM32L452_Nucleo_ticker
Fork of mbed-dev by
Diff: platform/FunctionPointer.h
- Revision:
- 178:79309dc6340a
- Parent:
- 167:e84263d55307
--- a/platform/FunctionPointer.h Wed Nov 08 13:50:44 2017 +0000
+++ b/platform/FunctionPointer.h Thu Nov 23 11:57:25 2017 +0000
@@ -23,13 +23,14 @@
namespace mbed {
/** \addtogroup platform */
-
+/** @{*/
+/**
+ * \defgroup platform_FunctionPointer FunctionPointer class
+ * @{
+ */
// Declarations for backwards compatibility
// To be foward compatible, code should adopt the Callback class
-/**
- * @ingroup platform
- */
template <typename R, typename A1>
class FunctionPointerArg1 : public Callback<R(A1)> {
public:
@@ -61,9 +62,6 @@
}
};
-/**
- * @ingroup platform
- */
template <typename R>
class FunctionPointerArg1<R, void> : public Callback<R()> {
public:
@@ -97,6 +95,10 @@
typedef FunctionPointerArg1<void, void> FunctionPointer;
+/**@}*/
+
+/**@}*/
+
} // namespace mbed
