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 #define IDISCOVERYSERVICE_H
class IDiscoveryService { 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 #endif //IDISCOVERYSERVICE_H

View File

@@ -1,8 +0,0 @@
//
// Created by Johnathon Slightham on 2025-05-25.
//
#ifndef IMESSAGINGINTERFACE_H
#define IMESSAGINGINTERFACE_H
#endif //IMESSAGINGINTERFACE_H