]> source.dussan.org Git - tigervnc.git/commitdiff
Added SFileTransfer, SFTMsgReader and SFTMsgWriter classes
authorDennis Syrovatsky <dennis@tightvnc.com>
Thu, 17 Nov 2005 04:23:28 +0000 (04:23 +0000)
committerDennis Syrovatsky <dennis@tightvnc.com>
Thu, 17 Nov 2005 04:23:28 +0000 (04:23 +0000)
to winvnc project.

git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@403 3789f03b-4d11-0410-bbf8-ca57d06f2519

winvnc/SFTMsgReader.cxx [new file with mode: 0644]
winvnc/SFTMsgReader.h [new file with mode: 0644]
winvnc/SFTMsgWriter.cxx [new file with mode: 0644]
winvnc/SFTMsgWriter.h [new file with mode: 0644]
winvnc/SFileTransfer.cxx [new file with mode: 0644]
winvnc/SFileTransfer.h [new file with mode: 0644]
winvnc/winvnc.dsp

diff --git a/winvnc/SFTMsgReader.cxx b/winvnc/SFTMsgReader.cxx
new file mode 100644 (file)
index 0000000..2302177
--- /dev/null
@@ -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 (file)
index 0000000..841d3a1
--- /dev/null
@@ -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 (file)
index 0000000..5a71aba
--- /dev/null
@@ -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 (file)
index 0000000..fee7937
--- /dev/null
@@ -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 (file)
index 0000000..857c768
--- /dev/null
@@ -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 (file)
index 0000000..4641226
--- /dev/null
@@ -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__
index 911185143831a37aea7ff02a0bee6a55e0ecf884..c554a33e8f7519ad5a27a074a1bf8cf1343eb065 100644 (file)
@@ -149,6 +149,18 @@ SOURCE=.\QueryConnectDialog.cxx
 # End Source File\r
 # Begin Source File\r
 \r
+SOURCE=.\SFileTransfer.cxx\r
+# End Source File\r
+# Begin Source File\r
+\r
+SOURCE=.\SFTMsgReader.cxx\r
+# End Source File\r
+# Begin Source File\r
+\r
+SOURCE=.\SFTMsgWriter.cxx\r
+# End Source File\r
+# Begin Source File\r
+\r
 SOURCE=.\STrayIcon.cxx\r
 # End Source File\r
 # Begin Source File\r
@@ -189,6 +201,18 @@ SOURCE=.\QueryConnectDialog.h
 # End Source File\r
 # Begin Source File\r
 \r
+SOURCE=.\SFileTransfer.h\r
+# End Source File\r
+# Begin Source File\r
+\r
+SOURCE=.\SFTMsgReader.h\r
+# End Source File\r
+# Begin Source File\r
+\r
+SOURCE=.\SFTMsgWriter.h\r
+# End Source File\r
+# Begin Source File\r
+\r
 SOURCE=.\STrayIcon.h\r
 # End Source File\r
 # Begin Source File\r