bonus-edge-proxy/src/utils/mqtt_topic_matcher.h

6 lines
132 B
C++

#pragma once
#include <string>
namespace MqttUtils {
bool topic_matches(const std::string& filter, const std::string& topic);
}