// SPDX-License-Identifier: Apache-2.0 /* * Copyright (C) 2021 Gwenhael Goavec-Merou * Copyright (C) 2021 Cologne Chip AG */ #ifndef SRC_COLOGNECHIPCFGPARSER_HPP_ #define SRC_COLOGNECHIPCFGPARSER_HPP_ #include #include #include "configBitstreamParser.hpp" class CologneChipCfgParser: public ConfigBitstreamParser { public: CologneChipCfgParser(const std::string &filename); int parse() override; }; #endif // SRC_COLOGNECHIPCFGPARSER_HPP_