00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 #ifndef _XLABELFILE_H_
00010 #define _XLABELFILE_H_
00011 
00012 #include "Paired.h"
00013 #include "RE.h"
00014 
00016 class XLabelFile : public Paired
00017 {
00018 private:
00019   RE *xre, *xre2;
00020   
00021 
00022   virtual void preprocess();
00023   virtual void read_entry();
00024 
00025   void init_re();
00026 
00027 public:
00028   XLabelFile();
00029   XLabelFile(const string&filename);
00030   ~XLabelFile();
00031 
00033   virtual string
00034   get_time0();
00035 };
00036 
00037 #endif