# cppzmqmanager **Repository Path**: osu_zxf/cppzmqmanager ## Basic Information - **Project Name**: cppzmqmanager - **Description**: ZMQ publisher and subscriber wrapper implemented in C++. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2021-08-18 - **Last Updated**: 2024-11-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## CPPZMQManager ZMQ Publisher and Subscriber wrapper implemented in C++. ### Prerequsite To install libzmq, you can use ``` sudo apt install libzmq5 ``` ### Usage samples Some samples are provided in main.cpp, feel free to build and run it. ``` mkdir build && cd build cmake .. make chmod +x main ./main ``` This project mainly depends on some new features introduced in C++ 11. Such as placholder, std::bind, std::function. Wish you can get some inspiration from here, and then use them for other scenarios.