mbed.org implementation of the abstract SmartREST library for the Cumulocity Platform SmartREST protocol.

Dependents:   MbedSmartRestMain MbedSmartRestMain

Revision:
2:45a6e44a4fb4
Parent:
0:099f76422485
Child:
6:cd7ba1ddb664
diff -r 9a11a331e340 -r 45a6e44a4fb4 MbedSmartRest.cpp
--- a/MbedSmartRest.cpp	Mon Jul 07 16:14:51 2014 +0200
+++ b/MbedSmartRest.cpp	Mon Jul 07 17:08:02 2014 +0200
@@ -28,6 +28,8 @@
 
  #include "MbedSmartRest.h"
 
-MbedSmartRest::MbedSmartRest(const char* host, uint16_t port, const char* username, const char* password, const char* identifier) : SmartRest(_client, identifier), _client(host, port, username, password)
+MbedSmartRest::MbedSmartRest(const char* host, uint16_t port, const char* identifier) :
+    SmartRest(_client, identifier),
+    _client(host, port)
 {
 }