00001 // TIMITfile.h: TIMIT file class 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 _TIMITFILE_H_ 00010 #define _TIMITFILE_H_ 00011 00012 #include "Paired.h" 00013 #include "RE.h" 00014 00016 class TIMITfile : public Paired 00017 { 00018 private: 00019 RE *Tre; // TIMIT annotation pattern 00020 virtual void 00021 read_entry(); 00022 00023 void init_re(); 00024 00025 public: 00026 TIMITfile(); 00027 TIMITfile(const string& filename); 00028 ~TIMITfile(); 00029 }; 00030 00031 #endif
1.2.7 written by Dimitri van Heesch,
 © 1997-2001