diff options
author | Robin Watts <robin.watts@artifex.com> | 2015-04-03 12:01:49 +0100 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2015-04-06 19:31:59 +0100 |
commit | 4c9611cb3d9f18322f8e77f8ba493799d77c0a0a (patch) | |
tree | d8b8fa3450ba94391d30ab61038ee97cfbabbc6d /platform/windows/mupdfwinrt/ContentItem.h | |
parent | 1ed4656f99a09f38216d11275fe85bb75c0d635a (diff) | |
download | mupdf-4c9611cb3d9f18322f8e77f8ba493799d77c0a0a.tar.xz |
Remove gsview from mupdf repo.
It has its own repo now. See http://git.ghostscript.com/?p=gsview.git
Diffstat (limited to 'platform/windows/mupdfwinrt/ContentItem.h')
-rw-r--r-- | platform/windows/mupdfwinrt/ContentItem.h | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/platform/windows/mupdfwinrt/ContentItem.h b/platform/windows/mupdfwinrt/ContentItem.h deleted file mode 100644 index 7077127d..00000000 --- a/platform/windows/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; - } - } - }; -} |