summaryrefslogtreecommitdiff
path: root/platform/winrt/mupdfwinrt/ContentItem.h
diff options
context:
space:
mode:
Diffstat (limited to 'platform/winrt/mupdfwinrt/ContentItem.h')
-rw-r--r--platform/winrt/mupdfwinrt/ContentItem.h58
1 files changed, 0 insertions, 58 deletions
diff --git a/platform/winrt/mupdfwinrt/ContentItem.h b/platform/winrt/mupdfwinrt/ContentItem.h
deleted file mode 100644
index 7077127d..00000000
--- a/platform/winrt/mupdfwinrt/ContentItem.h
+++ /dev/null
@@ -1,58 +0,0 @@
-#pragma once
-
-using namespace Platform; /* For String */
-
-namespace mupdfwinrt {
- [Windows::UI::Xaml::Data::Bindable]
- public ref class ContentItem sealed
- {
- private:
- int page;
- String^ string_orig;
- String^ string_margin;
-
- public:
- ContentItem(void);
-
- property int Page
- {
- int get()
- {
- return (page);
- }
-
- void set(int value)
- {
- if (value < 0)
- throw ref new Platform::InvalidArgumentException();
- page = value;
- }
- }
-
- property String^ StringOrig
- {
- String^ get()
- {
- return (string_orig);
- }
-
- void set(String^ value)
- {
- string_orig = value;
- }
- }
-
- property String^ StringMargin
- {
- String^ get()
- {
- return (string_margin);
- }
-
- void set(String^ value)
- {
- string_margin = value;
- }
- }
- };
-}