This is Webservice SDK for mbed. LPCXpresso1769/LPC1768/FRDM-K64F/LPC4088

Dependents:   MbedFileServer_1768MiniDK2 RedWireBridge IssueDebug_gcc MiMicRemoteMCU-for-Mbed ... more

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers INetIf.h Source File

INetIf.h

00001 /*
00002  * INetIf.h
00003  *
00004  *  Created on: 2014/12/12
00005  *      Author: nyatla
00006  */
00007 
00008 #pragma once
00009 #ifndef INETIF_H_
00010 #define INETIF_H_
00011 
00012 #include "NyLPC_net.h"
00013 #include "NyLPC_netif.h"
00014 
00015 namespace MiMic
00016 {
00017     class INetif
00018     {
00019     public:
00020         virtual const NyLPC_TiNetInterface_Interface* getInterface()=0;
00021     };
00022 }
00023 
00024 
00025 
00026 #endif /* INETIF_H_ */
00027