mirror of
https://github.com/Qv2ray/Qv2ray.git
synced 2025-05-20 10:50:23 +08:00
20 lines
565 B
C++
20 lines
565 B
C++
#pragma once
|
|
#include "base/Qv2rayBase.hpp"
|
|
|
|
namespace Qv2ray::core::config
|
|
{
|
|
void SaveGlobalSettings();
|
|
bool LocateConfiguration();
|
|
void SetConfigDirPath(const QString &path);
|
|
bool CheckSettingsPathAvailability(const QString &_path, bool checkExistingConfig);
|
|
} // namespace Qv2ray::core::config
|
|
|
|
namespace Qv2ray
|
|
{
|
|
// Extra header for QvConfigUpgrade.cpp
|
|
QJsonObject UpgradeSettingsVersion(int fromVersion, int toVersion, const QJsonObject &root);
|
|
} // namespace Qv2ray
|
|
|
|
using namespace Qv2ray::core;
|
|
using namespace Qv2ray::core::config;
|