summaryrefslogtreecommitdiff
path: root/src/checker/errors/types/isettings_error.hpp
blob: d5a788f47958c69f95acc67bb0d63c05f290c654 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// Created by claiff on 18.09.22.
//

#pragma once

#include <memory>

#include "managment/general.hpp"

namespace smtp::checker::errors::types
{
	class IErrorSettings
	{
	public:
		IErrorSettings() = default;
		virtual ~IErrorSettings() = default;

		virtual bool Check( manage::SettingsFileDataType const& line ) const = 0;
	};
	using IErrorSettingsPtr = std::shared_ptr<IErrorSettings>;
}