#include "ConnectionHandler.hpp" #include void ConnectionHandler::onConnected(AMQP::TcpConnection *connection) { std::cout << "TCP CONNECTED\n"; } void ConnectionHandler::onReady(AMQP::TcpConnection *connection) { std::cout << "AMQP READY\n"; } void ConnectionHandler::onError(AMQP::TcpConnection *connection, const char *message) { std::cerr << "AMQP error: " << message << std::endl; }