mirror of
https://github.com/BotChain-Robots/firmware.git
synced 2026-07-08 17:47:21 +02:00
16 lines
300 B
C++
16 lines
300 B
C++
//
|
|
// Created by Johnathon Slightham on 2025-05-26.
|
|
//
|
|
|
|
#ifndef IDISCOVERYSERVICE_H
|
|
#define IDISCOVERYSERVICE_H
|
|
|
|
class IDiscoveryService {
|
|
public:
|
|
virtual ~IDiscoveryService() = default;
|
|
|
|
virtual void set_connected_boards(const std::vector<int>& boards) = 0;
|
|
};
|
|
|
|
#endif //IDISCOVERYSERVICE_H
|