summaryrefslogtreecommitdiff
path: root/winrt/mupdf_cpp/DocumentPage.cpp
blob: ace6138f3fad8e2ca7c863028ec51fb169d2fe3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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;
	}
}