Libkleo
11#include <config-libkleo.h>
15#include "cryptoconfig_p.h"
19using namespace Kleo::Tests;
21FakeCryptoConfigIntValue::FakeCryptoConfigIntValue(
const char *componentName,
const char *entryName,
int fakeValue)
22 : mComponentName(componentName)
23 , mEntryName(entryName)
25 Kleo::Private::setFakeCryptoConfigIntValue(mComponentName, mEntryName, fakeValue);
28FakeCryptoConfigIntValue::~FakeCryptoConfigIntValue()
30 Kleo::Private::clearFakeCryptoConfigIntValue(mComponentName, mEntryName);
33FakeCryptoConfigStringValue::FakeCryptoConfigStringValue(
const char *componentName,
const char *entryName,
const QString &fakeValue)
34 : mComponentName(componentName)
35 , mEntryName(entryName)
37 Kleo::Private::setFakeCryptoConfigStringValue(mComponentName, mEntryName, fakeValue);
40FakeCryptoConfigStringValue::~FakeCryptoConfigStringValue()
42 Kleo::Private::clearFakeCryptoConfigStringValue(mComponentName, mEntryName);
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Jan 24 2025 11:50:12 by
doxygen 1.13.2 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.