mirror of https://github.com/ARMmbed/mbed-os.git
Fix NetworkInterface grouping
parent
222a36c6f4
commit
81108c6528
|
@ -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
|
||||
|
||||
/** @}*/
|
||||
|
|
Loading…
Reference in New Issue