00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef generic_export_filter_h
00019 #define generic_export_filter_h
00020
00021 #include <string>
00022 #include <vector>
00023 #include <utility>
00024
00025 #include "delphin5_output.h"
00026
00027 namespace DELPHIN {
00028
00029
00041 bool write_XY_generic_file(const std::string& fname,
00042 const std::vector<double>& timepoints,
00043 const std::vector< std::vector<double> >& values,
00044 const std::string& tp_var_name,
00045 const std::string& values_var_name,
00046 std::string& errmsg);
00047
00048
00062 bool write_3D_triplet_format_file(const std::string& fname,
00063 const std::vector<double>& t_vec,
00064 const std::vector<double>& x_vec,
00065 const std::vector<double>& v_vec,
00066 const std::string& tp_var_name,
00067 const std::string& dir_var_name,
00068 const std::string& values_var_name,
00069 std::string& errmsg);
00070
00071 }
00072
00073 #endif // generic_export_filter_h
00074