mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
22 lines
299 B
C++
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;
|
|
};
|