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/FileLike.h
- Revision:
- 178:79309dc6340a
- Parent:
- 168:9672193075cf
--- a/platform/FileLike.h Wed Nov 08 13:50:44 2017 +0000 +++ b/platform/FileLike.h Thu Nov 23 11:57:25 2017 +0000 @@ -23,14 +23,17 @@ namespace mbed { /** \addtogroup platform */ - - -/* Class FileLike +/** @{*/ +/** + * \defgroup platform_FileLike FileLike class + * @{ + */ +/** Class FileLike + * * A file-like object is one that can be opened with fopen by * fopen("/name", mode). * * @note Synchronization level: Set by subclass - * @ingroup platform */ class FileLike : public FileHandle, public FileBase, private NonCopyable<FileLike> { public: @@ -42,6 +45,9 @@ virtual ~FileLike() {} }; +/**@}*/ + +/**@}*/ } // namespace mbed