-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathrp_settings_impl.hpp
More file actions
37 lines (23 loc) · 833 Bytes
/
Copy pathrp_settings_impl.hpp
File metadata and controls
37 lines (23 loc) · 833 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
#pragma once
#include "reporter/api/rp_settings.hpp"
//------------------------------------------------------------------------------
namespace reporter {
//------------------------------------------------------------------------------
class SettingsImpl final : public Settings
{
public:
SettingsImpl();
CountType getMaxFilesCount() const override;
void setMaxFilesCount( CountType _count ) override;
CountType getMaxDetailsCount() const override;
void setMaxDetailsCount( CountType _count ) override;
bool getShowStdFiles() const override;
void setShowStdFiles( bool _enable ) override;
void copy( const Settings & _other ) override;
private:
CountType m_maxFilesCount;
CountType m_maxDetailsCount;
bool m_showStdFiles;
};
//------------------------------------------------------------------------------
}