summaryrefslogtreecommitdiff
path: root/winrt/mupdf_cpp/DocumentPage.cpp
blob: 637a19a4a5e6b2964c8d60263475c42d0b93deee (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;
    }
}