diff options
Diffstat (limited to 'platform/windows/gsview/Links.cs')
-rw-r--r-- | platform/windows/gsview/Links.cs | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/platform/windows/gsview/Links.cs b/platform/windows/gsview/Links.cs deleted file mode 100644 index ef902381..00000000 --- a/platform/windows/gsview/Links.cs +++ /dev/null @@ -1,31 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -//using System.Threading.Tasks; -using System.Drawing; - -namespace gsview -{ - public enum link_t - { - LINK_GOTO = 0, - LINK_URI, - TEXTBOX, /* Do double duty with this class */ - NOT_SET, - }; - - class Links - { - link_t type; - Uri uri; - int page_num; - - public Links() - { - uri = new Uri(""); - page_num = -1; - type = link_t.NOT_SET; - } - } -} |