MQTTClient

Dependents:   IoTGateway_Basic test

Revision:
3:ac326c5b065c
Parent:
2:92b9dd336375
Child:
4:9e25b78e0352
--- a/MQTTClient.h	Wed Mar 21 21:49:28 2012 +0000
+++ b/MQTTClient.h	Wed Mar 21 21:52:42 2012 +0000
@@ -46,22 +46,8 @@
 {
 public:
 
-/** Default Constructor
- */
     MQTTClient();
-
-/** Default Destructor
- */
     ~MQTTClient();
-
-/** Alternative Constructor with parameters
- * 
- * Allow object to be constructed with minimum parameters. 
- *
- * @param server The IP address of the server to connect to
- * @param port   The TCP/IP port on the server to connect to
- * @param callback Callback function to handle subscription to topics
- */
     MQTTClient(IpAddr server, int port, void (*callback)(char*, char*));
     void init(IpAddr *server, int port, void (*callback)(char*, char*));
     void init(IpAddr *server, int port, char *userName, char *password, void (*callback)(char*, char*));