BioInt
1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
|
00001 #ifndef BIOOUTPUTSTREAM_H 00002 #define BIOOUTPUTSTREAM_H 00003 00004 #include <string> 00005 #include <fstream> 00006 #include <iostream> 00007 00008 using namespace std; 00009 class BioOutputStream : public ofstream 00010 { 00011 00012 public : 00013 BioOutputStream (); 00014 BioOutputStream (string fileName_); 00015 }; 00016 #endif 00017