Qpidc provides APIs and libraries to implement AMQP clients in C++. Qpidc clients can interact with any compliant AMQP message broker. The Qpid project also provides an AMQP broker daemon called qpidd that you can use with your qpidc clients.
> ./configure && make > make installThis will build and install the client development kit and the broker in standard places. Use
./configure --help
for more options.
You can also install from RPMs with the rpm -i
command. You will need
qpidc
for core libraries.qpidc-devel
for header files and developer documentation.qpidd
for the broker daemon.
-I/usr/include/qpidc -I/usr/include/qpidc/framing -I/usr/include/qpidc/sys
and these link flags:
-lqpidcommon -lqpidclient
If you have installed somewhere else you should modify the flags appropriately.
See the client API module for more on the client API.