#ifndef _MQ_WORKER_H_ #define _MQ_WORKER_H_ #include #include typedef int (*handler_fn)(const std::string &input_path, const std::vector &input, std::string &output_path, std::vector &output); int mq_worker(const char *topic, const char *worker_name, handler_fn handle_image); #endif