#ifndef _FILEPROCESS_H_ #define _FILEPROCESS_H_ #include #include #include typedef int (*handler_fn)(const std::string &input_path, const std::vector &input, std::string &output_path, std::vector &output); int run_server(const std::string &server_addr, handler_fn handle_image); #endif