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
00017 dbtime() { }
00018 void readsw(const string &swtime);
00019
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
00029
00030
00031
00032
00033
00034
00035
00036 };
00037
00038 #endif