// SPDX-License-Identifier: Apache-2.0 /* * Copyright (C) 2019 Gwenhael Goavec-Merou */ #ifndef LATTICEBITPARSER_HPP_ #define LATTICEBITPARSER_HPP_ #include #include #include #include #include "configBitstreamParser.hpp" class LatticeBitParser: public ConfigBitstreamParser { public: LatticeBitParser(const std::string &filename, bool verbose = false); ~LatticeBitParser(); int parse() override; private: int parseHeader(); size_t _endHeader; }; #endif // LATTICEBITPARSER_HPP_