Update cmake according to trabucayre request https://github.com/trabucayre/openFPGALoader/pull/17

This commit is contained in:
Fabien Marteau
2020-01-27 09:47:42 +01:00
parent ca1329e707
commit a86eff6b57
45 changed files with 96 additions and 63 deletions
+26
View File
@@ -0,0 +1,26 @@
#ifndef BITPARSER_H
#define BITPARSER_H
#include <iostream>
#include <fstream>
#include "configBitstreamParser.hpp"
class BitParser: public ConfigBitstreamParser {
public:
BitParser(std::string filename, bool verbose = false);
~BitParser();
int parse();
private:
int parseField();
std::string fieldA;
std::string part_name;
std::string date;
std::string hour;
std::string design_name;
std::string userID;
std::string toolVersion;
};
#endif