blob: 3ee99dcdce654c9e85235734bc2932a3c638aaaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "pch.h"
#include "DocumentPage.h"
namespace mupdf_cpp
{
DocumentPage::DocumentPage(void)
{
this->Image = nullptr;
this->Height = 0;
this->Width = 0;
this->Zoom = 1.0;
this->Content = NOTSET;
_isPropertyChangedObserved = false;
}
}
|