BioInt
1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
|
00001 /*************************************************************************** 00002 BioSwissProtDt.h - description 00003 ------------------- 00004 begin : Fri May 21 2004 00005 copyright : (C) 2004 by Helix Team 00006 email : parisodhana@helixgenomics.com 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 #ifndef BIOSWISSPROTDT_H 00018 #define BIOSWISSPROTDT_H 00019 00020 using namespace std; 00021 #include <string> 00022 #include <iostream> 00023 #include <vector> 00024 00025 class BioSwissProtDt 00026 { 00027 string created_; 00028 string lastsequenceupdate_; 00029 string lastannotationupdate_; 00030 public: 00031 BioSwissProtDt(); 00032 BioSwissProtDt(const string&); 00033 00034 void setDt(vector<string> ); 00035 00036 string getCreatedDate(); 00037 string getLastSequenceUpdate(); 00038 string getLastAnnotationUpdate(); 00039 00040 void showDt(ostream& = cout); 00041 }; 00042 #endif