valFuzz 1.2.0
Loading...
Searching...
No Matches
reporter.cpp
Go to the documentation of this file.
1// SPDX-License-Identifier: MIT
2// Author: Giovanni Santini
3// Mail: giovanni.santini@proton.me
4// Github: @San7o
5
7
8namespace valfuzz
9{
11
15
19
20std::string &get_reporter()
21{
22 static std::string reporter_id = "default";
23 return reporter_id;
24}
25
26void set_reporter(std::string rep)
27{
28 std::string &rep_id = get_reporter();
29 rep_id = rep;
30}
31
32} // namespace valfuzz
virtual ~reporter()=0
Definition reporter.cpp:16
void set_reporter(std::string rep)
Definition reporter.cpp:26
reporter_engine reporter_eg
Definition reporter.cpp:10
std::string & get_reporter()
Definition reporter.cpp:20
#define ADD_REPORTER(in_rep)
Definition reporter.hpp:84