From 4c9611cb3d9f18322f8e77f8ba493799d77c0a0a Mon Sep 17 00:00:00 2001 From: Robin Watts <robin.watts@artifex.com> Date: Fri, 3 Apr 2015 12:01:49 +0100 Subject: Remove gsview from mupdf repo. It has its own repo now. See http://git.ghostscript.com/?p=gsview.git --- platform/windows/mupdfwinrt/ContentItem.h | 58 ------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 platform/windows/mupdfwinrt/ContentItem.h (limited to 'platform/windows/mupdfwinrt/ContentItem.h') 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; - } - } - }; -} -- cgit v1.2.3