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
14void read_vector_from_file(const std::string& file_name, std::vector<double>& v);
15
16
26void write_vector_to_file(const std::string& file_name, const std::vector<double>& v);
27
35void 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)