nextcloud-desktop/admin/win/tools/NCNavRemove/ConfigIni.h
Andy Scherzinger 49038ade94
docs(reuse): Migrate to SPDX header
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2025-04-25 17:27:21 +02:00

22 lines
299 B
C++

/*
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include <string>
class ConfigIni
{
public:
ConfigIni();
bool load();
std::wstring getAppName() const;
private:
std::wstring _appName;
};