BioInt
1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
|
00001 #ifndef BIOPSITABINTERACTIONSOURCEDB_H 00002 #define BIOPSITABINTERACTIONSOURCEDB_H 00003 00004 #include "BioPsiTabDbref.h" 00005 using namespace std; 00006 00007 class BioPsiTabInteractionSourceDb 00008 { 00009 BioPsiTabDbref psi_source; 00010 BioPsiTabDbref int_db; 00011 public: 00012 BioPsiTabInteractionSourceDb(); 00013 BioPsiTabInteractionSourceDb(string s,string t); 00014 string getInteractionDbName(); 00015 string getInteractionDbId(); 00016 string getPsiSourceDbName(); 00017 string getPsiSourceDbId(); 00018 void setInteractionDbName(string s); 00019 void setInteractionDbId(string s); 00020 void setPsiSourceDbName(string s); 00021 void setPsiSourceDbId(string s); 00022 }; 00023 00024 #endif