Files
salmanoff/hcore/include/deviceManager/deviceSpecParser.h
T
hayodea 6307d2869e DeviceManager: Initial class with DeviceSpecParser
Hopefully by the end of tonight we should be done with the dev
spec parser.
2025-01-05 14:19:53 -04:00

13 lines
335 B
C++

#ifndef DEVICESPECPARSER_H
#define DEVICESPECPARSER_H
#include <string>
#include <vector>
#include <utility>
std::vector<std::string> readDeviceFile(const std::string& filename);
std::vector<std::pair<std::string, std::string>> parseDeviceSpecifiers(
const std::vector<std::string>& deviceStrings);
#endif // DEVICESPECPARSER_H