51becbde
Peter M. Groen
Committed the ent...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#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
|