dbtime.h

Go to the documentation of this file.
00001 #ifndef DBTIME_H
00002 #define DBTIME_H
00003 
00004 #include <string>
00005 using namespace std;
00006 
00007 void convert(const char str[4], char dig[3]);
00008 
00014 class dbtime {
00015         public:
00016                 // make a time from swiss prot time
00017                 dbtime() { } 
00018                 void readsw(const string &swtime);
00019                 //int mch2int(char mc[3]);
00020                 string aceTime() const;
00021 
00022                 static const char* const mstr2dig[24];
00023                 static void convert(const char str[4], char dig[3]);
00024 
00025         private: 
00026                 string year, date, month;
00027                 /*
00028                 int year;
00029                 int date;
00030                 int month;
00031                 int hour;
00032                 int minute;
00033                 int second;
00034                 */
00035                 //static char m[12][3];
00036 };
00037 
00038 #endif

Generated on Wed Aug 10 11:56:58 2011 for Softwares from Orpara by  doxygen 1.5.6