Murata RF modules are designed to simplify wireless development and certification by minimizing the amount of RF expertise you need to wirelessly enable a wide range of applications.

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers CreateSocketResponse.h Source File

CreateSocketResponse.h

00001 #ifndef SmartLab_MuRata_Response_CreateSocketResponse
00002 #define SmartLab_MuRata_Response_CreateSocketResponse
00003 
00004 #include "Payload.h"
00005 #include "SNICCode.h"
00006 
00007 using namespace std;
00008 
00009 namespace SmartLabMuRata
00010 {
00011 class CreateSocketResponse : public Payload
00012 {
00013 public :
00014     CreateSocketResponse(Payload * payload);
00015 
00016     SNICCode GetStatus();
00017 
00018     char GetSocketID();
00019 };
00020 }
00021 
00022 #endif