summaryrefslogtreecommitdiff
path: root/src/checker/errors/types/isettings_error.hpp
blob: 05f68e3935d9f55173396679f3f21ae911ad6498 (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 "management/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>;
}