20 std::vector< std::pair<std::ostream*, int> > strms;
21 std::vector<std::ofstream*> file_strms;
25 using iomanip_func = std::ostream& (*)(std::ostream&);
39 add_ostream(strm, priolvl);
44 add_ofstream(file, priolvl);
53 void add_ostream(std::ostream& strm,
int priolvl)
55 strms.push_back( {{&strm}, {priolvl}} );
58 void add_ofstream(
const std::string& file,
int priolvl)
60 std::ofstream *filestrm =
new std::ofstream;
61 filestrm->open(file, std::ios::out);
62 if (filestrm->is_open())
64 strms.push_back( {{filestrm},{priolvl}});
65 file_strms.push_back(filestrm);
70 logstreamer_t& operator << (
const T& item)
72 for (
auto& strm : strms)
73 if (strm.second <= priolvl)
74 *(strm.first) << item;
80 logstreamer_t& operator << (iomanip_func iofunc)
82 for (
auto& strm : strms)
83 if (strm.second <= priolvl)
84 *(strm.first) << iofunc;
89 logstreamer_t& operator << (
const priority_t& priority)
91 priolvl = priority.level;
97 for (
auto* fstrm : file_strms) { fstrm->close();
delete fstrm; }