summaryrefslogtreecommitdiff
path: root/platform/winrt/mupdf_cpp/DocumentPage.cpp
blob: 39a22aa95283b3f6a09832645f090bda6f51cb5f (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->PageZoom = 1.0;
		this->Content = NOTSET;
		_isPropertyChangedObserved = false;
	}
}