25#ifndef INFIX_OSTREAM_IT_INCLUDED
26#define INFIX_OSTREAM_IT_INCLUDED
33 :
public std::iterator<std::output_iterator_tag, T> {
Definition: infix_ostream_it.h:33
infix_ostream_iterator< T > & operator++(int)
Definition: infix_ostream_it.h:50
infix_ostream_iterator< T > & operator=(T const &item)
Definition: infix_ostream_it.h:40
infix_ostream_iterator< T > & operator++()
Definition: infix_ostream_it.h:48
infix_ostream_iterator< T > & operator*()
Definition: infix_ostream_it.h:46
std::string m_curr_delimiter
Definition: infix_ostream_it.h:54
std::string m_delimiter
Definition: infix_ostream_it.h:55
infix_ostream_iterator(std::ostream &s)
Definition: infix_ostream_it.h:35
infix_ostream_iterator(std::ostream &s, const char *d)
Definition: infix_ostream_it.h:37
std::ostream * m_os
Definition: infix_ostream_it.h:53