Fix NetworkInterface grouping

pull/9646/head
Seppo Takalo 2019-01-09 14:21:39 +02:00 committed by adbridge
parent 222a36c6f4
commit 81108c6528
1 changed files with 8 additions and 4 deletions

View File

@ -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
/** @}*/