ImagingTools Core SDK
ITaskParamsPlugin.h
1// SPDX-License-Identifier: LGPL-2.1-or-later OR GPL-2.0-or-later OR GPL-3.0-or-later OR LicenseRef-ImtCore-Commercial
2#pragma once
3
4
5// ACF includes
6#include <istd/TIFactory.h>
7#include <iprm/IParamsSet.h>
8
9// ImtCore includes
10#include <imtbase/IPluginInfo.h>
11
12
13namespace imthype
14{
15
16
21{
22public:
23 typedef istd::TIFactory<iprm::IParamsSet> IParamSetFactory;
24
28 virtual const IParamSetFactory* GetTaskParamsFactory() const = 0;
29};
30
31
32} // namespace imthype
33
34
virtual const IParamSetFactory * GetTaskParamsFactory() const =0