#include <iomanip>
#include <iterator>
#include <ostream>
#include <sstream>
#include "calc_error.hpp"
#include "node.hpp"
#include "node_impl.hpp"
#include "variables.hpp"
Go to the source code of this file.
Functions | |
void | print_identifier_list (std::ostream &stream, identifier_list const &identifiers) |
void print_identifier_list | ( | std::ostream & | stream, | |
identifier_list const & | identifiers | |||
) |
Definition at line 246 of file node_impl.cpp.
Referenced by node_function::print_node().
00247 { 00248 stream << '('; 00249 char const* sep = ""; 00250 for (identifier_list::const_iterator id(identifiers.begin()); id != identifiers.end(); ++id) { 00251 stream << sep << *id; 00252 sep = ", "; 00253 } 00254 stream << ')'; 00255 }