#pragma once // Project #include struct mosquitto *connect(const char *clientid, // NOLINT const char *username, // NOLINT const char *password, // NOLINT const char *hostname, // NOLINT int port, void callback(struct mosquitto *, void *, const struct mosquitto_message *), void *userdata); void run(struct mosquitto *client, const char *topics[], const volatile bool *quit); void shutdown(struct mosquitto *client);