12345678910111213141516171819202122232425262728 |
- #ifndef __ASIO2_MQTT_BROKER_HPP__
- #define __ASIO2_MQTT_BROKER_HPP__
- #if defined(_MSC_VER) && (_MSC_VER >= 1200)
- #pragma once
- #endif
- #include <asio2/mqtt/mqtt_server.hpp>
- namespace asio2
- {
- template<class session_t>
- using mqtt_broker_t = mqtt_server_t<session_t>;
- using mqtt_broker = mqtt_server;
- }
- #endif
|