BioInt
1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
|
00001 #ifndef BIORAW_H 00002 #define BIORAW_H 00003 00004 #include "BioSequence.h" 00005 00006 using namespace std; 00007 00008 class BioRaw : public BioSequence 00009 { 00010 00011 public: 00012 BioRaw(); 00013 BioRaw(const string & fileName_); 00014 }; 00015 00016 #endif 00017