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

6 lines
132 B
C
Raw Normal View History

2025-10-13 13:55:15 +08:00
#pragma once
#include <string>
namespace MqttUtils {
bool topic_matches(const std::string& filter, const std::string& topic);
}