BioInt
1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
|
00001 #ifndef BIOSCOP171_H 00002 #define BIOSCOP171_H 00003 00004 00005 #include <iostream> 00006 #include <vector> 00007 #include <string> 00008 #include <fstream> 00009 #include "BioScopClass.h" 00010 00011 using namespace std; 00012 00013 class BioScop171 00014 { 00015 int sunId_; 00016 vector <BioScopClass> classes_; 00017 string description_; 00018 00019 public: 00020 BioScop171(); 00021 BioScop171(const string& ); // Filename == dir.des.scop...txt 00022 00023 void setScop(vector <string> ); 00024 00025 int getNumberOfClasses(); 00026 BioScopClass getClass(int); 00027 // bool findScop(const string& ); 00028 }; 00029 00030 00031 #endif 00032