errorcode.h
426 Bytes
#ifndef OSDEV_COMPONENTS_MQTT_ERRORCODE_H
#define OSDEV_COMPONENTS_MQTT_ERRORCODE_H
// std
#include <string>
namespace osdev {
namespace components {
namespace mqtt {
/*!
* \return A stringified paho error code...
*/
std::string pahoAsyncErrorCodeToString( int errorCode );
} // End namespace mqtt
} // End nnamespace components
} // End namesapce osdev
#endif // OSDEV_COMPONENTS_MQTT_ERRORCODE_H