ImagingTools Core SDK
CUsersSqlPathExtractorComp.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 <imtdb/CPostgresXPathExtractorComp.h>
7
8
9namespace imtauthdb
10{
11
12
13class CUsersSqlPathExtractorComp: public imtdb::CPostgresXPathExtractorComp
14{
15public:
16 typedef CPostgresXPathExtractorComp BaseClass;
17
18 I_BEGIN_COMPONENT(CUsersSqlPathExtractorComp)
19 I_END_COMPONENT
20
21 // reimplemented (ISqlJsonXPathExtractor)
22 virtual QString ExtractXPath(
23 const QString& jsonKey,
24 const QString& fieldId,
25 QMetaType::Type metaType = QMetaType::QString,
26 const QString& tableAlias = QString()) const override;
27};
28
29
30} // namespace imtauthdb
31
32
Authentication Database Persistence Layer Module.