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