file_io
Loading...
Searching...
No Matches
file_io.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5//using namespace std;
6
7
16void read_vector_from_file(const std::string& file_name, std::vector<double>& v);
17
18
28void write_vector_to_file(const std::string& file_name, const std::vector<double>& v);
29
37void fill_vector(std::istream& istr, std::vector<double>& v);
void read_vector_from_file(const std::string &file_name, std::vector< double > &v)
void fill_vector(std::istream &istr, std::vector< double > &v)
void write_vector_to_file(const std::string &file_name, const std::vector< double > &v)