-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathrp_settings.hpp
More file actions
35 lines (22 loc) · 868 Bytes
/
rp_settings.hpp
File metadata and controls
35 lines (22 loc) · 868 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
#pragma once
#include <cstddef>
//------------------------------------------------------------------------------
namespace reporter {
//------------------------------------------------------------------------------
class Settings
{
public:
virtual ~Settings() = default;
using CountType = std::size_t;
virtual CountType getMaxFilesCount() const = 0;
virtual void setMaxFilesCount( CountType _count ) = 0;
virtual CountType getMaxDetailsCount() const = 0;
virtual void setMaxDetailsCount( CountType _count ) = 0;
virtual bool getShowStdFiles() const = 0;
virtual void setShowStdFiles( bool _enable ) = 0;
virtual bool getShowOnlyStdHeaders() const = 0;
virtual void setShowOnlyStdHeaders( bool _enable ) = 0;
virtual void copy( const Settings & _other ) = 0;
};
//------------------------------------------------------------------------------
}