Internally Book supports multiple illustrations

This commit is contained in:
Veloman Yunkan
2021-10-31 16:59:06 +04:00
parent c129952605
commit 5263f6880c
2 changed files with 14 additions and 4 deletions

View File

@ -21,6 +21,8 @@
#define KIWIX_BOOK_H
#include <string>
#include <vector>
#include <memory>
namespace pugi {
class xml_node;
@ -139,7 +141,7 @@ class Book
uint64_t m_mediaCount = 0;
bool m_readOnly = false;
uint64_t m_size = 0;
Illustration m_illustration;
std::vector<std::shared_ptr<Illustration>> m_illustrations;
};
}