CHENGQI YANG / SmartLab_MuRata
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers WIFIConnectionIndication.h Source File

WIFIConnectionIndication.h

00001 #ifndef SmartLab_MuRata_Indication_WIFIConnectionIndication
00002 #define SmartLab_MuRata_Indication_WIFIConnectionIndication
00003 
00004 #include "Payload.h"
00005 #include "WIFIInterface.h"
00006 #include "WIFICode.h"
00007 
00008 using namespace std;
00009 
00010 namespace SmartLabMuRata
00011 {
00012 class WIFIConnectionIndication : public Payload
00013 {
00014 public:
00015     WIFIConnectionIndication(Payload * payload);
00016 
00017     WIFIInterface GetInterface();
00018 
00019     WIFICode GetStatus();
00020 
00021     const char * GetSSID();
00022 };
00023 }
00024 
00025 #endif