BioInt
1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
|
00001 /**************************************************************************** 00002 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00003 The BioBhasha : The Biologist's Programming Language 00004 Version 1.0 (19th December 2001) 00005 Prasad, B.V.L.S. 00006 Contact: burrashiva@yahoo.com 00007 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00008 *****************************************************************************/ 00009 #ifndef BIOPDBEXPDTA_H 00010 #define BIOPDBEXPDTA_H 00011 00012 using namespace std; 00013 00014 #include <string> 00015 #include <vector> 00016 #include <fstream> 00017 #include <iostream> 00018 #include "BioUtilities.h" 00019 00020 class BioPdbExpdta 00021 { 00022 00023 vector<string>expdta_; 00024 public: 00025 BioPdbExpdta(const string& ti_); 00026 00027 void showExpdta(ostream& = cout); 00028 00029 int getExpdtaSize(); 00030 string getExpdta(); 00031 bool findExpdta(const string& str); 00032 }; 00033 00034 #endif