mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
(cherry picked from commit 8a2ee6cd3ddbf5d739fbfaf33ecb367930206471) # Conflicts: # urbackupcommon/settingslist.cpp # urbackupserver/dllmain.cpp # urbackupserver/server_settings.cpp # urbackupserver/server_settings.h # urbackupserver/serverinterface/settings.cpp
11 lines
499 B
C++
11 lines
499 B
C++
#include <string>
|
|
#include <vector>
|
|
|
|
std::vector<std::string> getSettingsList(void);
|
|
std::vector<std::string> getClientConfigurableSettingsList();
|
|
std::vector<std::string> getClientMergableSettingsList();
|
|
std::vector<std::string> getOnlyServerClientSettingsList(void);
|
|
std::vector<std::string> getGlobalizedSettingsList(void);
|
|
std::vector<std::string> getLocalizedSettingsList(void);
|
|
std::vector<std::string> getGlobalSettingsList(void);
|
|
std::vector<std::string> getLdapSettingsList(void); |