Skip to content

Commit 7a195ae

Browse files
Jari PoyhonenJari Poyhonen
authored andcommitted
Cellular: fix for binary compability requirement for CY8CKIT_062_4343W
1 parent b0c7c26 commit 7a195ae

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

features/netsocket/NetworkInterface.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -334,14 +334,6 @@ class NetworkInterface: public DNS {
334334
return 0;
335335
}
336336

337-
/** Return pointer to a CellularInterface.
338-
* @return Pointer to requested interface type or NULL if this class doesn't implement the interface.
339-
*/
340-
virtual CellularInterface *cellularInterface()
341-
{
342-
return 0;
343-
}
344-
345337
/** Return pointer to an EMACInterface.
346338
* @return Pointer to requested interface type or NULL if this class doesn't implement the interface.
347339
*/
@@ -410,6 +402,14 @@ class NetworkInterface: public DNS {
410402
* configuration).
411403
*/
412404
virtual void set_default_parameters();
405+
406+
/** Return pointer to a CellularInterface.
407+
* @return Pointer to requested interface type or NULL if this class doesn't implement the interface.
408+
*/
409+
virtual CellularInterface *cellularInterface()
410+
{
411+
return 0;
412+
}
413413
};
414414

415415
#endif

0 commit comments

Comments
 (0)