src: class Packer decomposition, introduce PackerBase

This commit is contained in:
Markus F.X.J. Oberhumer
2023-08-10 20:40:27 +02:00
parent a66ee9fafd
commit c65c882ecc
8 changed files with 130 additions and 111 deletions
+1 -1
View File
@@ -36,7 +36,7 @@
//
**************************************************************************/
Packer::Packer(InputFile *f) : fi(f) {
Packer::Packer(InputFile *f) : PackerBase(f) {
if (fi != nullptr)
file_size = fi->st_size();
mem_size_assert(1, file_size_u);