Go to the documentation of this file.00001 #ifndef mbl_save_text_file_h_
00002 #define mbl_save_text_file_h_
00003
00004
00005
00006
00007
00008
00009 #include <vcl_ostream.h>
00010 #include <vcl_string.h>
00011 #include <vcl_vector.h>
00012
00013
00014
00015 template <class T>
00016 bool mbl_save_text_file(const vcl_vector<T >& v, const vcl_string& path );
00017
00018
00019 template <class T>
00020 bool mbl_save_text_file(const vcl_vector<T >& v, vcl_ostream &os, const vcl_string& delim="\n");
00021
00022
00023
00024
00025 #endif