00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef INTERROGATE_DATAFILE_H
00020 #define INTERROGATE_DATAFILE_H
00021
00022
00023
00024
00025 #include <dtoolbase.h>
00026 #include <vector>
00027
00028 void idf_output_string(ostream &out, const string &str, char whitespace = ' ');
00029 void idf_input_string(istream &in, string &str);
00030
00031 void idf_output_string(ostream &out, const char *str, char whitespace = ' ');
00032 void idf_input_string(istream &in, const char *&str);
00033
00034 template<class Element>
00035 void idf_output_vector(ostream &out, const vector<Element> &vec);
00036
00037 template<class Element>
00038 void idf_input_vector(istream &in, vector<Element> &vec);
00039
00040 #include "interrogate_datafile.I"
00041
00042 #endif