#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 247 of file node_impl.cpp.
Referenced by node_function::print_node().
00248 { 00249 stream << '('; 00250 char const* sep = ""; 00251 for (identifier_list::const_iterator id(identifiers.begin()); id != identifiers.end(); ++id) { 00252 stream << sep << *id; 00253 sep = ", "; 00254 } 00255 stream << ')'; 00256 }