Cleanup interfaces

This commit is contained in:
2025-10-15 23:14:27 -04:00
parent 2b235524fe
commit 27e67df033
2 changed files with 4 additions and 9 deletions

View File

@@ -6,7 +6,10 @@
#define IDISCOVERYSERVICE_H
class IDiscoveryService {
public:
virtual ~IDiscoveryService() = default;
virtual static void setup() = 0;
virtual static void set_connected_boards(const std::vector<int>& boards) = 0;
}
#endif //IDISCOVERYSERVICE_H