diff options
Diffstat (limited to '')
-rw-r--r-- | Section.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Section.hpp b/Section.hpp index 14ea2f8..8e1a0d1 100644 --- a/Section.hpp +++ b/Section.hpp @@ -2,6 +2,7 @@ #include <vector> #include <map> +#include <condition_variable> #include "Block.hpp" #include "Field.hpp" @@ -17,6 +18,7 @@ class Section { byte *m_dataSkyLight = nullptr; byte m_bitsPerBlock = 0; std::vector<Block> m_blocks; + std::condition_variable parseWaiter; public: void Parse(); |