BioInt  1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
BioSif.h
Go to the documentation of this file.
00001 #ifndef BIOSIF_H
00002 #define BIOSIF_H
00003 
00004 #include <iostream>
00005 #include <fstream>
00006 #include <vector>
00007 #include <algorithm>
00008 #include "BioUtilities.h"
00009 #include "BioSifInteraction.h"
00010 
00011 using namespace std;
00012 
00013 class BioSif
00014 {
00015   vector<BioSifInteraction> bsi_;
00016 public:
00017   BioSif();
00018   BioSif(string fn);
00019   BioSifInteraction getSifInteraction(int ind);
00020   long getNumberOfInteractions();
00021 };
00022 
00023 #endif
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines