BioInt  1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
BioPsiTabInteractorAlias.h
Go to the documentation of this file.
00001 #ifndef BIOPSITABINTERACTORALIAS_H
00002 #define BIOPSITABINTERACTORALIAS_H
00003 
00004 #include "BioPsiTabDbref.h"
00005 
00006 using namespace std;
00007 
00008 class BioPsiTabInteractorAlias
00009 {
00010   string dbname, alias, alias_type;
00011 public:
00012   BioPsiTabInteractorAlias();
00013   BioPsiTabInteractorAlias(string s);
00014   BioPsiTabInteractorAlias(string s, string t, string r);
00015   string getName();
00016   string getDatabaseName();
00017   string getType();
00018   void setName(string s);
00019   void setDatabaseName(string s);
00020   void setType(string s);
00021 };
00022 
00023 #endif
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines