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 BIOPDBTITLE_H 00010 #define BIOPDBTITLE_H 00011 00012 using namespace std; 00013 00014 #include <string> 00015 #include <vector> 00016 #include <iostream> 00017 #include <fstream> 00018 #include <cstdlib> 00019 #include <cstdio> 00020 00021 class BioPdbTitle 00022 { 00023 00024 string title_; 00025 00026 public: 00027 BioPdbTitle(const string& ti_); 00028 00029 void showTitle(ostream& = cout); 00030 bool findTitle(const string& ); 00031 00032 }; 00033 00034 #endif