Files
firmware/components/rpc/include/wireless/mDNSDiscoveryService.h
2026-05-19 23:13:24 -04:00

25 lines
509 B
C++

//
// Created by Johnathon Slightham on 2025-05-25.
//
#ifndef DISCOVERYSERVICE_H
#define DISCOVERYSERVICE_H
#include <vector>
#include "IDiscoveryService.h"
class mDNSDiscoveryService final : public IDiscoveryService {
public:
mDNSDiscoveryService();
~mDNSDiscoveryService() override;
void set_connected_boards(const std::vector<int>& boards) override;
private:
std::string m_module_id;
std::string m_module_type;
std::string m_connected_modules;
};
#endif //DISCOVERYSERVICE_H