summaryrefslogtreecommitdiff
path: root/platform/winrt/gsview/gsIO.cs
diff options
context:
space:
mode:
Diffstat (limited to 'platform/winrt/gsview/gsIO.cs')
-rw-r--r--platform/winrt/gsview/gsIO.cs32
1 files changed, 0 insertions, 32 deletions
diff --git a/platform/winrt/gsview/gsIO.cs b/platform/winrt/gsview/gsIO.cs
deleted file mode 100644
index 82e47be6..00000000
--- a/platform/winrt/gsview/gsIO.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.ComponentModel;
-
-namespace gsview
-{
- class gsIO : INotifyPropertyChanged
- {
- public String gsIOString
- {
- get;
- set;
- }
-
- public event PropertyChangedEventHandler PropertyChanged;
-
- public void PageRefresh()
- {
- if (PropertyChanged != null)
- {
- PropertyChanged(this, new PropertyChangedEventArgs("gsIOString"));
- }
- }
-
- public gsIO()
- {
- this.gsIOString = "";
- }
- }
-}