-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathrp_reporter.hpp
More file actions
39 lines (26 loc) · 811 Bytes
/
rp_reporter.hpp
File metadata and controls
39 lines (26 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#pragma once
#include <stdfwd.hpp>
#include <stdio.h>
//------------------------------------------------------------------------------
namespace model_includes {
class Model;
}
//------------------------------------------------------------------------------
namespace reporter {
class Settings;
enum class ReporterKind;
//------------------------------------------------------------------------------
class Reporter
{
public:
virtual ~Reporter() = default;
virtual ReporterKind getKind() const = 0;
virtual const Settings & getSettings() const = 0;
virtual void copySettings( const Settings & _settings ) = 0;
virtual void report(
const model_includes::Model & _model,
std::ostream & _stream
) = 0;
};
//------------------------------------------------------------------------------
}