14#ifndef INTERROGATE_DATAFILE_H
15#define INTERROGATE_DATAFILE_H
23void idf_output_string(std::ostream &out,
const std::string &str,
char whitespace =
' ');
29template<
class Element>
32template<
class Element>
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
void idf_output_string(std::ostream &out, const std::string &str, char whitespace=' ')
Writes the indicated string to the output file.
void idf_input_string(std::istream &in, std::string &str)
Reads the given string from the input file, as previously written by output_string().
void idf_output_vector(std::ostream &out, const std::vector< Element > &vec)
Writes the indicated vector to the output file.
void idf_input_vector(std::istream &in, std::vector< Element > &vec)
Reads the given vector from the input file, as previously written by output_string().