diff options
Diffstat (limited to 'vncviewer/FTMsgReader.h')
-rw-r--r-- | vncviewer/FTMsgReader.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/vncviewer/FTMsgReader.h b/vncviewer/FTMsgReader.h new file mode 100644 index 00000000..b5401c27 --- /dev/null +++ b/vncviewer/FTMsgReader.h @@ -0,0 +1,44 @@ +/* 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/ + * + */ + +// -=- FTMsgReader.h + +#ifndef __RFB_WIN32_FTMSGREADER_H__ +#define __RFB_WIN32_FTMSGREADER_H__ + +#include <rdr/InStream.h> +#include <vncviewer/FileTransfer.h> + +namespace rfb { + namespace win32 { + class FTMsgReader + { + public: + FTMsgReader(rdr::InStream *pIS); + ~FTMsgReader(); + + private: + rdr::InStream *m_pInStream; + }; + } +} + +#endif // __RFB_WIN32_FTMSGREADER_H__ |