loom
1/*
2MIT License
3
4Copyright (c) 2021 МГТУ им. Н.Э. Баумана, кафедра ИУ-6, Михаил Фетисов,
5
6https://bmstu.codes/lsx/simodo
7*/
8
9#include "simodo/inout/reporter/StreamReporter.h"10#include "simodo/inout/convert/functions.h"11
12#include <iostream>13
14namespace simodo::inout15{
16void StreamReporter::report(const SeverityLevel level, const Location &, const std::string &briefly, const std::string &atlarge) const17{18_out << getSeverityLevelName(level) << briefly << std::endl;19if (!atlarge.empty())20_out << atlarge << std::endl;21}22
23}