6 lines
132 B
C
6 lines
132 B
C
|
|
#pragma once
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
namespace MqttUtils {
|
||
|
|
bool topic_matches(const std::string& filter, const std::string& topic);
|
||
|
|
}
|