ImagingTools Core SDK
IParamsSetPlugin.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 <iprm/IParamsSet.h>
7
8// ImtCore includes
9#include <imtbase/IPluginInfo.h>
10#include <imtrest/IRepresentationController.h>
11
12
13namespace imtbase
14{
15
16
21{
22public:
23 typedef istd::TIFactory<iprm::IParamsSet> IParamsSetFactory;
24 typedef istd::TIFactory<imtrest::IRepresentationController> IRepresentationControllerFactory;
25
29 virtual const IParamsSetFactory* GetParamsSetFactory() const = 0;
30 virtual const IRepresentationControllerFactory* GetRepresentationControllerFactory() const = 0;
31};
32
33
34} // namespace imtbase
35
36
virtual const IParamsSetFactory * GetParamsSetFactory() const =0