ImagingTools Core SDK
CUserSerializableCollectionControllerComp.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// ImtCore includes
6#include <imtservergql/CSerializableObjectCollectionControllerComp.h>
7
8
9namespace imtauthgql
10{
11
12
13class CUserSerializableCollectionControllerComp: public imtservergql::CSerializableObjectCollectionControllerComp
14{
15public:
16 typedef imtservergql::CSerializableObjectCollectionControllerComp BaseClass;
17
18 I_BEGIN_COMPONENT(CUserSerializableCollectionControllerComp);
19 I_END_COMPONENT;
20
21protected:
22 // reimplemented (imtgql::CSerializableObjectCollectionControllerComp)
23 virtual void CustomProcessObject(const imtgql::CGqlRequest& gqlRequest, iser::ISerializable& object) const override;
24};
25
26
27} // namespace imtauthgql
28
29
Authentication GraphQL API Layer Module.