2
0
mirror of https://github.com/status-im/status-desktop.git synced 2025-02-22 03:28:52 +00:00

10 lines
237 B
C++
Raw Normal View History

#include "systemutils.h"
#include <QtGlobal>
SystemUtils::SystemUtils(QObject *parent) : QObject(parent) {}
QString SystemUtils::getEnvVar(const QString &varName) {
return qEnvironmentVariable(varName.toUtf8().constData(), "");
}