mbed Connector Interface simplification API on top of mbed-client

Fork of mbedConnectorInterfaceV3 by Doug Anson

NOTE:

This repo has been replaced with https://github.com/ARMmbed/mbedConnectorInterface. No further updates will occur with this repo. Please use the github repo instead. Thanks!

Revision:
46:62da4ce20276
Parent:
38:bb6d2be4d54c
--- a/source/ConnectionStatusInterface.cpp	Wed Jun 15 20:51:13 2016 +0000
+++ b/source/ConnectionStatusInterface.cpp	Wed Jun 15 22:40:29 2016 +0000
@@ -38,4 +38,28 @@
 ConnectionStatusInterface::~ConnectionStatusInterface() {
 }
 
+// Registered
+void ConnectionStatusInterface::object_registered(void * /* ep */,void * /* security */,void * /*data */) {
+}
+
+// Re-registered
+void ConnectionStatusInterface::registration_updated(void * /* ep */,void * /* security */,void * /*data */) {
+}
+
+// Beginning de-registration
+void ConnectionStatusInterface::begin_object_unregistering(void * /* ep */) {
+}
+
+// De-registered
+void ConnectionStatusInterface::object_unregistered(void * /* ep */,void * /* data */) {
+}
+
+// Bootstrapped
+void ConnectionStatusInterface::bootstrapped(void * /* ep */,void * /* data */) {
+}
+
+// Value Updated
+void ConnectionStatusInterface::value_updated(void * /* ep */,void * /* data */,int /* type */) {
+}
+
 } // Connector namespace
\ No newline at end of file