BioInt
1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
|
00001 #ifndef BIOPSIMITAB_H 00002 #define BIOPSIMITAB_H 00003 00004 #include <vector> 00005 #include <string> 00006 #include <algorithm> 00007 #include <iostream> 00008 #include <fstream> 00009 00010 #include "BioUtilities.h" 00011 #include "BioPsiTabInteraction.h" 00012 00013 using namespace std; 00014 00015 class BioPsimiTab 00016 { 00017 vector<BioPsiTabInteraction> bi_; 00018 public: 00019 BioPsimiTab(); 00020 BioPsimiTab(const string& fn); 00021 BioPsimiTab(vector<BioPsiTabInteraction> b); 00022 ~BioPsimiTab(); 00023 BioPsiTabInteraction getInteraction(int i); 00024 long getNumberOfInteractions(); 00025 }; 00026 00027 00028 #endif