BioInt
1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
|
00001 #ifndef BIOPSITABDBREF_H 00002 #define BIOPSITABDBREF_H 00003 00004 #include <iostream> 00005 #include <vector> 00006 #include <algorithm> 00007 #include <string> 00008 00009 #include "BioUtilities.h" 00010 00011 using namespace std; 00012 00013 class BioPsiTabDbref 00014 { 00015 string dbname; 00016 string dbid; 00017 public: 00018 BioPsiTabDbref(); 00019 BioPsiTabDbref(string nm_id); 00020 BioPsiTabDbref(string name, string id); 00021 void setPsiTabDbref(string nm_id); 00022 void setPsiTabDbref(string nm, string id); 00023 string getId(); 00024 string getName(); 00025 void setId(string id); 00026 void setName(string name); 00027 }; 00028 00029 #endif