#include "diller_util.h" #include namespace trygvis { namespace diller { using namespace std; string diller_topic_for_property_value(const string &device, const string &property) { return "/diller/" + device + "/property/" + property + "/value"; } string diller_topic_for_property_name(const string &device, const string &property) { return "/diller/" + device + "/property/" + property + "/name"; } }; // namespace diller }; // namespace trygvis