Core Base Classes for the Light Endpoints

Dependencies:   BufferedSerial

Dependents:   mbed_mqtt_endpoint_ublox_ethernet mbed_mqtt_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_ethernet ... more

Revision:
12:9af48d60705f
Parent:
11:f1c9299a3ca1
Child:
20:f2dbbd852e08
--- a/MapEntry.h	Tue Feb 25 16:33:18 2014 +0000
+++ b/MapEntry.h	Tue Feb 25 17:10:47 2014 +0000
@@ -25,13 +25,16 @@
      private:
         char    m_mbed_name[MAX_NAME_LENGTH+1];
         char    m_ioc_name[MAX_NAME_LENGTH+1];
+        char    m_ioc_nickname[MAX_NAME_LENGTH+1];
         
      public:
         MapEntry(char *ioc_name,char *mbed_name);
+        MapEntry(char *ioc_name,char *mbed_name,char *ioc_nickname);
         MapEntry(MapEntry &entry);
        ~MapEntry();
        
        char *iocName();
+       char *iocNickName();
        char *mbedName();
        
      private: