diff options
Diffstat (limited to 'platform/windows/mupdf_cpp/DocumentPage.cpp')
-rw-r--r-- | platform/windows/mupdf_cpp/DocumentPage.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/platform/windows/mupdf_cpp/DocumentPage.cpp b/platform/windows/mupdf_cpp/DocumentPage.cpp new file mode 100644 index 00000000..39a22aa9 --- /dev/null +++ b/platform/windows/mupdf_cpp/DocumentPage.cpp @@ -0,0 +1,15 @@ +#include "pch.h" +#include "DocumentPage.h" + +namespace mupdf_cpp +{ + DocumentPage::DocumentPage(void) + { + this->Image = nullptr; + this->Height = 0; + this->Width = 0; + this->PageZoom = 1.0; + this->Content = NOTSET; + _isPropertyChangedObserved = false; + } +} |