00001 // 00002 // aegis - project change supervisor 00003 // Copyright (C) 2001, 2002, 2005, 2006, 2008 Peter Miller 00004 // 00005 // This program is free software; you can redistribute it and/or modify 00006 // it under the terms of the GNU General Public License as published by 00007 // the Free Software Foundation; either version 3 of the License, or 00008 // (at your option) any later version. 00009 // 00010 // This program is distributed in the hope that it will be useful, 00011 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 // GNU General Public License for more details. 00014 // 00015 // You should have received a copy of the GNU General Public License 00016 // along with this program. If not, see 00017 // <http://www.gnu.org/licenses/>. 00018 // 00019 00020 #ifndef LIBAEGIS_INPUT_QUOTED_PRINT_H 00021 #define LIBAEGIS_INPUT_QUOTED_PRINT_H 00022 00023 #include <libaegis/input.h> 00024 00025 class input_quoted_printable: 00026 public input_ty 00027 { 00028 public: 00032 virtual ~input_quoted_printable(); 00033 00040 input_quoted_printable(input &deeper); 00041 00042 // See base class for documentation. 00043 nstring name(); 00044 00045 // See base class for documentation. 00046 long length(); 00047 00048 // See base class for documentation. 00049 void keepalive(); 00050 00051 // See base class for documentation. 00052 long read_inner(void *data, size_t nbytes); 00053 00054 // See base class for documentation. 00055 long ftell_inner(); 00056 00057 // See base class for documentation. 00058 bool is_remote() const; 00059 00060 private: 00065 input deeper; 00066 00067 bool eof; 00068 long pos; 00069 00073 input_quoted_printable(); 00074 00078 input_quoted_printable(const input_quoted_printable &arg); 00079 00083 input_quoted_printable &operator=(const input_quoted_printable &arg); 00084 }; 00085 00086 #endif // LIBAEGIS_INPUT_QUOTED_PRINT_H