Pakman
output.h
Go to the documentation of this file.
1 #ifndef WRITE_PARAMETERS_H
2 #define WRITE_PARAMETERS_H
3 
4 #include <string>
5 #include <vector>
6 #include <ostream>
7 
8 #include "types.h"
9 
21 void write_parameters(std::ostream& ostrm,
22  const std::vector<ParameterName>& parameter_names,
23  const std::vector<Parameter>& parameters);
24 
25 #endif // WRITE_PARAMETERS_H
void write_parameters(std::ostream &ostrm, const std::vector< ParameterName > &parameter_names, const std::vector< Parameter > &parameters)
Definition: output.cc:11