BioInt  1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
BioSifInteraction.h
Go to the documentation of this file.
00001 #ifndef BIOSIFINTERACTION_H
00002 #define BIOSIFINTERACTION_H
00003 
00004 #include <iostream>
00005 #include <string>
00006 #include "BioUtilities.h"
00007 
00008 using namespace std;
00009 
00010 class BioSifInteraction
00011 {
00012   string int1_,int2_,int_type;
00013 public:
00014   BioSifInteraction();
00015   BioSifInteraction(string ln);
00016   BioSifInteraction(string in1, string in2, string itype);
00017   string getInteractorA();
00018   string getInteractorB();
00019   string getInteractionType();
00020 };
00021 
00022 #endif
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines