BioInt  1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
BioScopDomainEntry.h
Go to the documentation of this file.
00001 #ifndef BIOSCOPDOMAINENTRY_H
00002 #define BIOSCOPDOMAINENTRY_H
00003 
00004 #include <string>
00005 #include <iostream>
00006 #include <vector>
00007 #include <sstream>
00008 #include <cstdio>
00009 #include <cstdlib>
00010 
00011 
00012 using namespace std;
00013 
00014 class BioScopDomainEntry
00015 {
00016         int sunId_;
00017         string scopId_;
00018         string description_;
00019 
00020         public:
00021         BioScopDomainEntry(); 
00022         BioScopDomainEntry(const string & ); // this expects a string from dir.des.scop...txt file
00023                                         // NOT File Name.
00024         int getScopUniqueId();
00025         string getScopId();
00026         string getDescription();
00027 /*
00028         string getPdbId();
00029         bool findScopId(const string& );
00030         bool findDescription(const string& );
00031         */
00032 };
00033 
00034 
00035 #endif
00036 
00037 
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines