Fix example for libmosquittopp virtual destructor change.

This commit is contained in:
Roger A. Light 2015-02-08 20:30:12 +00:00
parent c5ee5686bd
commit a8fedf794f

View File

@ -13,6 +13,10 @@ mqtt_tempconv::mqtt_tempconv(const char *id, const char *host, int port) : mosqu
connect(host, port, keepalive);
};
mqtt_tempconv::~mqtt_tempconv()
{
}
void mqtt_tempconv::on_connect(int rc)
{
printf("Connected with code %d.\n", rc);