From 81108c652836de0b96d8386c50669b653d02e25d Mon Sep 17 00:00:00 2001 From: Seppo Takalo Date: Wed, 9 Jan 2019 14:21:39 +0200 Subject: [PATCH] Fix NetworkInterface grouping --- features/netsocket/NetworkInterface.h | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/features/netsocket/NetworkInterface.h b/features/netsocket/NetworkInterface.h index c84fff2504..6fac582a57 100644 --- a/features/netsocket/NetworkInterface.h +++ b/features/netsocket/NetworkInterface.h @@ -1,4 +1,4 @@ -/* NetworkStack +/* * Copyright (c) 2015 ARM Limited * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -14,6 +14,11 @@ * limitations under the License. */ +/** @file NetworkInterface.h Network Interface base class */ +/** @\addtogroup netsocket + * @{ */ + + #ifndef NETWORK_INTERFACE_H #define NETWORK_INTERFACE_H @@ -33,8 +38,6 @@ class EMACInterface; /** Common interface that is shared between network devices. * - * @\addtogroup netsocket - * @{ */ class NetworkInterface: public DNS { public: @@ -346,5 +349,6 @@ protected: #endif //!defined(DOXYGEN_ONLY) }; -/** @}*/ #endif + +/** @}*/