BioInt  1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
BioPdbRemark2.h
Go to the documentation of this file.
00001 #ifndef BIOPDBREMARK2_H
00002 #define BIOPDBREMARK2_H
00003 
00004 using namespace std;
00005 
00006 #include <string>
00007 #include <cstdio>
00008 #include <cstdlib>
00009 #include <vector>
00010 #include <fstream>
00011 #include <iostream>
00012 
00013 
00014 class BioPdbRemark2
00015 {
00016   float resolution_;
00017   vector<string> remark2_;
00018   
00019 public: 
00020         BioPdbRemark2();
00021         BioPdbRemark2(const string& fi_);
00022         
00023         void showRemark2(ostream& = cout );
00024         float getResolution();
00025         
00026         
00027    //vector <BioPdbSingleRemark> multipleRemark_ ;
00028 };
00029 
00030 #endif
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines