6307d2869e
Hopefully by the end of tonight we should be done with the dev spec parser.
13 lines
335 B
C++
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
|