From 7ea99e3a8951e265d1437a77dcfee069de0edf76 Mon Sep 17 00:00:00 2001 From: Michael Vrhel Date: Tue, 9 Sep 2014 16:31:31 -0700 Subject: Rename of winrt to windows due to presence on gsview in this folder. The contents of this folder will contain both winrt and gsview projects which are shared in a common visual studio 2013 solution. --- platform/windows/gsview/gsIO.cs | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 platform/windows/gsview/gsIO.cs (limited to 'platform/windows/gsview/gsIO.cs') 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 = ""; + } + } +} -- cgit v1.2.3