ImagingTools Core SDK
CUserRepresentationController.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/IPolymorphic.h>
7#include <istd/IChangeable.h>
8
9// ImtCore includes
10#include <GeneratedFiles/imtauthsdl/SDL/1.0/CPP/Users.h>
11
12
13namespace imtauthgql
14{
15
16
17class CUserRepresentationController: public istd::IPolymorphic
18{
19public:
20 virtual bool FillUserInfoFromRepresentation(
21 const sdl::imtauth::Users::CUserData::V1_0& representation,
22 istd::IChangeable& userObject,
23 imtbase::IObjectCollection* userCollectionPtr,
24 const QByteArray& userId,
25 QString& errorMessage) const;
26};
27
28
29} // namespace imtauth
30
31
Authentication GraphQL API Layer Module.