00001 #ifndef FILE_STREAM_TO_CODEC_H 00002 #define FILE_STREAM_TO_CODEC_H 00003 00013 #include "environmentCodec.h" 00014 #include <fstream> 00015 00016 00020 class FileStreamToCodec : public EnvironmentCodecStream { 00021 std::fstream fd; 00022 00023 public: 00029 FileStreamToCodec(const char* fname); 00030 ~FileStreamToCodec(void); 00031 bool is_open(void); 00032 bool eof(void); 00033 char get1ch(void); 00034 }; 00035 00036 00037 #endif /* !FILE_STREAM_TO_CODEC_H */ 00038