Main Page   Namespace List   Class Hierarchy   Compound List   File List   Compound Members   File Members  

Paired.h

Go to the documentation of this file.
00001 // Paired.h: abstract class for (reference, label) style annotation files
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 _PAIRED_H_
00010 #define _PAIRED_H_
00011 
00012 #include <string>
00013 #include <fstream>
00014 #include "Record.h"
00015 
00017 class Paired : public Record
00018 {
00019 private:
00020   bool refread, labelread;
00021   // refread, labelread: indicate if ref (or label) is read
00022 
00023 public:
00024   Paired();
00025 
00027 
00031   virtual string
00032   get_time0();
00033 
00035   string get_time();
00036 
00038   string get_label();
00039 
00040   bool open(const string& filename);
00041 
00042 };
00043 
00044 #endif

Generated at Wed Jul 3 14:54:03 2002 for Annotation Graph API by doxygen1.2.7 written by Dimitri van Heesch, © 1997-2001