summaryrefslogtreecommitdiffstats
path: root/src/corelib/global/qenvironmentvariables.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/global/qenvironmentvariables.h')
-rw-r--r--src/corelib/global/qenvironmentvariables.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/corelib/global/qenvironmentvariables.h b/src/corelib/global/qenvironmentvariables.h
deleted file mode 100644
index 78fea255d3..0000000000
--- a/src/corelib/global/qenvironmentvariables.h
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright (C) 2022 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
-
-#ifndef QENVIRONMENTVARIABLES_H
-#define QENVIRONMENTVARIABLES_H
-
-#include <QtCore/qglobal.h>
-#include <QtCore/qtdeprecationmarkers.h>
-
-#if 0
-#pragma qt_class(QEnvironmentVariables)
-#pragma qt_sync_stop_processing
-#endif
-
-QT_BEGIN_NAMESPACE
-
-class QByteArray;
-class QByteArrayView;
-
-Q_CORE_EXPORT QByteArray qgetenv(const char *varName);
-// need it as two functions because QString is only forward-declared here
-Q_CORE_EXPORT QString qEnvironmentVariable(const char *varName);
-Q_CORE_EXPORT QString qEnvironmentVariable(const char *varName, const QString &defaultValue);
-#if QT_CORE_REMOVED_SINCE(6, 5)
-Q_CORE_EXPORT bool qputenv(const char *varName, const QByteArray &value);
-#endif
-Q_CORE_EXPORT bool qputenv(const char *varName, QByteArrayView value);
-Q_CORE_EXPORT bool qunsetenv(const char *varName);
-
-Q_CORE_EXPORT bool qEnvironmentVariableIsEmpty(const char *varName) noexcept;
-Q_CORE_EXPORT bool qEnvironmentVariableIsSet(const char *varName) noexcept;
-Q_CORE_EXPORT int qEnvironmentVariableIntValue(const char *varName, bool *ok=nullptr) noexcept;
-
-QT_END_NAMESPACE
-
-#endif /* QENVIRONMENTVARIABLES_H */