ImagingTools Core SDK
ITaskPlugin.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 <iinsp/ISupplier.h>
8
9// ImtCore includes
10#include <imtbase/IPluginInfo.h>
11
12
13namespace imthype
14{
15
16
20class ITaskPlugin: virtual public imtbase::IPluginInfo
21{
22public:
23 typedef istd::TIFactory<iinsp::ISupplier> ISupplierFactory;
24
28 virtual const ISupplierFactory* GetTaskFactory() const = 0;
29};
30
31
32} // namespace imthype
33
34
virtual const ISupplierFactory * GetTaskFactory() const =0