MBED_DEMOS / Mbed 2 deprecated mbed_mqtt_endpoint_ublox_ethernet

Dependencies:   C027 C12832 EthernetInterface StatusReporter LM75B MQTT-ansond endpoint_core endpoint_mqtt mbed-rtos mbed

Revision:
9:ff877db53cfd
Parent:
7:f570eb3f38cd
Child:
10:748fc7052e61
--- a/HTTPTransport.cpp	Wed Feb 26 21:29:27 2014 +0000
+++ b/HTTPTransport.cpp	Wed Feb 26 21:48:57 2014 +0000
@@ -18,6 +18,12 @@
  
  #include "HTTPTransport.h"
  
+ // Endpoint Support
+ #include "MBEDEndpoint.h"
+ 
+ // EmulatedResourceFactory support
+ #include "EmulatedResourceFactory.h"
+ 
  // HTTP Client
  HTTPClient _http;
  
@@ -31,6 +37,20 @@
  HTTPTransport::~HTTPTransport() {
  }
  
+ // Load up our endpoint into the IOC
+ bool HTTPTransport::loadEndpoint() {
+     bool success = false;
+     
+     return success;
+ }
+ 
+ // update our endpoint with the IOC
+ bool HTTPTransport::updateEndpoint() {
+     bool success = false;
+     
+     return success;
+ }       
+       
  // connect up HTTP
  bool HTTPTransport::connect() { return this->m_connected; }