Added SFileTransfer, SFTMsgReader and SFTMsgWriter classes
to winvnc project.


git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@403 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/winvnc/SFTMsgReader.cxx b/winvnc/SFTMsgReader.cxx
new file mode 100644
index 0000000..2302177
--- /dev/null
+++ b/winvnc/SFTMsgReader.cxx
@@ -0,0 +1,34 @@
+/* Copyright (C) 2005 TightVNC Team.  All Rights Reserved.
+ *    
+ * This is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ * 
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this software; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
+ * USA.
+ *
+ * TightVNC distribution homepage on the Web: http://www.tightvnc.com/
+ *
+ */
+
+// -=- SFTMsgReader.cxx
+
+#include <winvnc/SFTMsgReader.h>
+
+using namespace winvnc;
+
+SFTMsgReader::SFTMsgReader()
+{
+}
+
+SFTMsgReader::~SFTMsgReader()
+{
+}
diff --git a/winvnc/SFTMsgReader.h b/winvnc/SFTMsgReader.h
new file mode 100644
index 0000000..841d3a1
--- /dev/null
+++ b/winvnc/SFTMsgReader.h
@@ -0,0 +1,36 @@
+/* Copyright (C) 2005 TightVNC Team.  All Rights Reserved.
+ *    
+ * This is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ * 
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this software; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
+ * USA.
+ *
+ * TightVNC distribution homepage on the Web: http://www.tightvnc.com/
+ *
+ */
+
+// -=- SFTMsgReader.h
+
+#ifndef __RFB_WIN32_SFTMSGREADER_H__
+#define __RFB_WIN32_SFTMSGREADER_H__
+
+namespace winvnc {
+  class SFTMsgReader
+  {
+  public:
+    SFTMsgReader();
+    ~SFTMsgReader();
+  };
+}
+
+#endif // __RFB_WIN32_SFTMSGREADER_H__
diff --git a/winvnc/SFTMsgWriter.cxx b/winvnc/SFTMsgWriter.cxx
new file mode 100644
index 0000000..5a71aba
--- /dev/null
+++ b/winvnc/SFTMsgWriter.cxx
@@ -0,0 +1,34 @@
+/* Copyright (C) 2005 TightVNC Team.  All Rights Reserved.
+ *    
+ * This is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ * 
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this software; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
+ * USA.
+ *
+ * TightVNC distribution homepage on the Web: http://www.tightvnc.com/
+ *
+ */
+
+// -=- SFTMsgWriter.cxx
+
+#include <winvnc/SFTMsgWriter.h>
+
+using namespace winvnc;
+
+SFTMsgWriter::SFTMsgWriter()
+{
+}
+
+SFTMsgWriter::~SFTMsgWriter()
+{
+}
diff --git a/winvnc/SFTMsgWriter.h b/winvnc/SFTMsgWriter.h
new file mode 100644
index 0000000..fee7937
--- /dev/null
+++ b/winvnc/SFTMsgWriter.h
@@ -0,0 +1,36 @@
+/* Copyright (C) 2005 TightVNC Team.  All Rights Reserved.
+ *    
+ * This is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ * 
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this software; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
+ * USA.
+ *
+ * TightVNC distribution homepage on the Web: http://www.tightvnc.com/
+ *
+ */
+
+// -=- SFTMsgWriter.h
+
+#ifndef __RFB_WIN32_SFTMSGWRITER_H__
+#define __RFB_WIN32_SFTMSGWRITER_H__
+
+namespace winvnc {
+  class SFTMsgWriter
+  {
+  public:
+    SFTMsgWriter();
+    ~SFTMsgWriter();
+  };
+}
+
+#endif // __RFB_WIN32_SFTMSGWRITER_H__
diff --git a/winvnc/SFileTransfer.cxx b/winvnc/SFileTransfer.cxx
new file mode 100644
index 0000000..857c768
--- /dev/null
+++ b/winvnc/SFileTransfer.cxx
@@ -0,0 +1,34 @@
+/* Copyright (C) 2005 TightVNC Team.  All Rights Reserved.
+ *    
+ * This is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ * 
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this software; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
+ * USA.
+ *
+ * TightVNC distribution homepage on the Web: http://www.tightvnc.com/
+ *
+ */
+
+// -=- SFileTransfer.cxx
+
+#include <winvnc/SFileTransfer.h>
+
+using namespace winvnc;
+
+SFileTransfer::SFileTransfer()
+{
+}
+
+SFileTransfer::~SFileTransfer()
+{
+}
diff --git a/winvnc/SFileTransfer.h b/winvnc/SFileTransfer.h
new file mode 100644
index 0000000..4641226
--- /dev/null
+++ b/winvnc/SFileTransfer.h
@@ -0,0 +1,36 @@
+/* Copyright (C) 2005 TightVNC Team.  All Rights Reserved.
+ *    
+ * This is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ * 
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this software; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
+ * USA.
+ *
+ * TightVNC distribution homepage on the Web: http://www.tightvnc.com/
+ *
+ */
+
+// -=- SFileTransfer.h
+
+#ifndef __RFB_WIN32_SFILETRANSFER_H__
+#define __RFB_WIN32_SFILETRANSFER_H__
+
+namespace winvnc {
+  class SFileTransfer
+  {
+  public:
+    SFileTransfer();
+    ~SFileTransfer();
+  };
+}
+
+#endif // __RFB_WIN32_SFILETRANSFER_H__
diff --git a/winvnc/winvnc.dsp b/winvnc/winvnc.dsp
index 9111851..c554a33 100644
--- a/winvnc/winvnc.dsp
+++ b/winvnc/winvnc.dsp
@@ -149,6 +149,18 @@
 # End Source File

 # Begin Source File

 

+SOURCE=.\SFileTransfer.cxx

+# End Source File

+# Begin Source File

+

+SOURCE=.\SFTMsgReader.cxx

+# End Source File

+# Begin Source File

+

+SOURCE=.\SFTMsgWriter.cxx

+# End Source File

+# Begin Source File

+

 SOURCE=.\STrayIcon.cxx

 # End Source File

 # Begin Source File

@@ -189,6 +201,18 @@
 # End Source File

 # Begin Source File

 

+SOURCE=.\SFileTransfer.h

+# End Source File

+# Begin Source File

+

+SOURCE=.\SFTMsgReader.h

+# End Source File

+# Begin Source File

+

+SOURCE=.\SFTMsgWriter.h

+# End Source File

+# Begin Source File

+

 SOURCE=.\STrayIcon.h

 # End Source File

 # Begin Source File