mirror of
https://github.com/trabucayre/openFPGALoader.git
synced 2026-08-30 09:59:03 +02:00
Update cmake according to trabucayre request https://github.com/trabucayre/openFPGALoader/pull/17
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user