00001 // TFfile.h: Table Format file model 00002 // Haejoong Lee, Xiaoyi Ma, Steven Bird 00003 // Copyright (C) 2001 Linguistic Data Consortium, U Penn. 00004 // Web: http://www.ldc.upenn.edu/; Email: ldc@ldc.upenn.edu 00005 // For license information, see the file `LICENSE' included 00006 // with the distribution. 00007 00008 00009 #ifndef _TFFILE_H_ 00010 #define _TFFILE_H_ 00011 00012 #include "Record.h" 00013 00015 class TFfile : public Record 00016 { 00017 private: 00018 string separator; 00019 00020 protected: 00021 virtual void 00022 read_entry(); 00023 00024 public: 00029 TFfile(int n, const string& separator); 00030 00036 TFfile(int n, const string& separator, const string& filename); 00037 00039 bool read_record(); 00040 00041 }; 00042 00043 #endif
1.2.7 written by Dimitri van Heesch,
 © 1997-2001