00001
00002
00003
00004
00005
00006
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
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