BioInt  1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
BioPdbKeywds.h
Go to the documentation of this file.
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 BIOPDBKEYWDS_H 
00010 #define BIOPDBKEYWDS_H
00011 
00012 using namespace std;
00013 
00014 #include <string>
00015 #include <vector>
00016 #include <fstream>
00017 #include <iostream>
00018 #include <cstdlib>
00019 #include <cstdio>
00020 
00021 class BioPdbKeywds
00022 {
00023 
00024         vector<string>keywds_;
00025 public:
00026         BioPdbKeywds(const string& ti_);
00027 
00028         void showKeywds(ostream& = cout);
00029 
00030         int getKeywdsSize();
00031         // bool findKeywds(string ) ; // TO BE ADDED 15th July 2005
00032 
00033 };
00034 
00035 #endif
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines