// // Created by Мустафаев Селим Мустафаевич on 01.01.2024. // #ifndef ALIENCAT_EXPORTER_DNSMASQSOURCE_H #define ALIENCAT_EXPORTER_DNSMASQSOURCE_H #include #include #include class DnsmasqSource { private: std::ifstream _leases; public: DnsmasqSource(); std::vector readLeases(); }; #endif //ALIENCAT_EXPORTER_DNSMASQSOURCE_H