fileStreamToCodec.cpp

00001 /*
00002   ファイルストリームの EnvironmentCodecStream 化
00003   Satofumi KAMIMURA
00004   $Id$
00005 */
00006 
00007 #include "fileStreamToCodec.h"
00008 
00009 
00010 FileStreamToCodec::FileStreamToCodec(const char* fname) {
00011   fd.open(fname, std::ios::in);
00012 }
00013 
00014 
00015 FileStreamToCodec::~FileStreamToCodec(void) {
00016   fd.close();
00017 }
00018 
00019 
00020 bool FileStreamToCodec::is_open(void) {
00021   return fd.is_open();
00022 }
00023 
00024 
00025 bool FileStreamToCodec::eof(void) {
00026   return fd.eof();
00027 }
00028 
00029 
00030 char FileStreamToCodec::get1ch(void) {
00031   return fd.get();
00032 }
00033 
00034 

Generated on Mon Apr 13 22:52:03 2009 by  doxygen 1.5.7.1