! *\brief Sets the MQTTTopic's filter * The ownership of the filter is passed to MQTTTopic. * * \param filter */
| 65 | * \param filter |
| 66 | */ |
| 67 | void MQTTTopic::setFilter(AsciiFilter* f) { |
| 68 | delete m_filter; |
| 69 | m_filter = f; |
| 70 | } |
| 71 | |
| 72 | /*! |
| 73 | *\brief Returns the MQTTTopic's filter |
no outgoing calls