summaryrefslogtreecommitdiffstats
path: root/src/manager-lib/globalruntimeconfiguration.cpp
blob: 80c82c38b567a49d35152b54ed01bc99f9bf3411 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#include "globalruntimeconfiguration.h"

QT_BEGIN_NAMESPACE_AM

GlobalRuntimeConfiguration &GlobalRuntimeConfiguration::instance()
{
    static GlobalRuntimeConfiguration inst;
    return inst;
}

QT_END_NAMESPACE_AM