configBitstreamParser: introduce a buffer for unprocessed file content

This commit is contained in:
Gwenhael Goavec-Merou
2021-01-24 18:16:09 +01:00
parent cd625d4c99
commit 46beaea14d
2 changed files with 3 additions and 1 deletions
+1
View File
@@ -29,6 +29,7 @@ class ConfigBitstreamParser {
bool _verbose;
std::ifstream _fd;
std::string _bit_data;
std::string _raw_data; /**< unprocessed file content */
std::map<std::string, std::string> _hdr;
};