DDD

Dependencies:   HW4 FP MQTTPacket

Fork of MQTT by MQTT

MQTTClient.cpp

Committer:
icraggs
Date:
2014-04-09
Revision:
8:c46930bd6c82
Parent:
7:f9d690fb6dad
Child:
9:01b8cc7d94cc

File content as of revision 8:c46930bd6c82:

/*******************************************************************************
 * Copyright (c) 2014 IBM Corp.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and Eclipse Distribution License v1.0 which accompany this distribution.
 *
 * The Eclipse Public License is available at
 *    http://www.eclipse.org/legal/epl-v10.html
 * and the Eclipse Distribution License is available at
 *   http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * Contributors:
 *    Ian Craggs - initial API and implementation and/or initial documentation
 *******************************************************************************/
 
#include "MQTTClient.h"
#include "MQTTPacket.h"


void MQTT::threadfn(void* arg)
{
   ((Client<Network, Timer, Thread>*) arg)->run(NULL);
}