summaryrefslogtreecommitdiff
path: root/le/le_file.hpp
diff options
context:
space:
mode:
authorDennis Brentjes <d.brentjes@gmail.com>2016-09-11 22:56:42 +0200
committerDennis Brentjes <d.brentjes@gmail.com>2016-09-11 22:56:42 +0200
commitc6465bd8c6aca006bc7e980d5db08518659bae3c (patch)
treed25a4b697640fd5cb38f000e8b2369525b7ef92b /le/le_file.hpp
parent0828d0bf368d7e0bdc835062aad62bc336047350 (diff)
downloadopenwar-c6465bd8c6aca006bc7e980d5db08518659bae3c.tar.gz
openwar-c6465bd8c6aca006bc7e980d5db08518659bae3c.tar.bz2
openwar-c6465bd8c6aca006bc7e980d5db08518659bae3c.zip
Adds a Pages struct to the le::File which contains all pages.
Diffstat (limited to 'le/le_file.hpp')
-rw-r--r--le/le_file.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/le/le_file.hpp b/le/le_file.hpp
index 09fc42d..0807ea4 100644
--- a/le/le_file.hpp
+++ b/le/le_file.hpp
@@ -12,6 +12,7 @@
#include "le_entry_table.hpp"
#include "le_fixup_page_table.hpp"
#include "le_fixup_record_table.hpp"
+#include "le_pages.hpp"
#include <cstdint>
#include <cstddef>
@@ -41,6 +42,7 @@ struct File
EntryTable entry_table;
FixupPageTable fixup_page_table;
FixupRecordTable fixup_record_table;
+ Pages pages;
};
File parse_file(std::istream& is);