File indexing completed on 2024-06-09 05:17:18

0001 /*
0002     oidmap.h
0003 
0004     This file is part of libkleo, the KDE keymanagement library
0005     SPDX-FileCopyrightText: 2004 Klarälvdalens Datakonsult AB
0006     SPDX-FileCopyrightText: 2008 Klarälvdalens Datakonsult AB
0007     SPDX-FileCopyrightText: 2022 Ingo Klöcker <kloecker@kde.org>
0008 
0009     SPDX-License-Identifier: GPL-2.0-or-later
0010 */
0011 
0012 #pragma once
0013 
0014 #include "kleo_export.h"
0015 
0016 class QString;
0017 
0018 namespace Kleo
0019 {
0020 
0021 KLEO_EXPORT const char *oidForAttributeName(const QString &attr);
0022 
0023 KLEO_EXPORT const char *attributeNameForOID(const char *oid);
0024 
0025 }