summaryrefslogtreecommitdiff
path: root/platform/windows/gsview/gsIO.cs
diff options
context:
space:
mode:
Diffstat (limited to 'platform/windows/gsview/gsIO.cs')
-rw-r--r--platform/windows/gsview/gsIO.cs32
1 files changed, 32 insertions, 0 deletions
diff --git a/platform/windows/gsview/gsIO.cs b/platform/windows/gsview/gsIO.cs
new file mode 100644
index 00000000..82e47be6
--- /dev/null
+++ b/platform/windows/gsview/gsIO.cs
@@ -0,0 +1,32 @@
+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 = "";
+ }
+ }
+}