Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
// Starts regular enumerator signalling if no push notifications available
QTimer _enumeratorSignallingTimer;
- class Private;
- std::unique_ptr<Private> d;
+ class MacImplementation;
+ std::unique_ptr<MacImplementation> d;
};
} // namespace Mac
namespace Mac {
-class API_AVAILABLE(macos(11.0)) FileProviderDomainManager::Private {
+class API_AVAILABLE(macos(11.0)) FileProviderDomainManager::MacImplementation {
public:
- Private() = default;
- ~Private() = default;
+ MacImplementation() = default;
+ ~MacImplementation() = default;
void findExistingFileProviderDomains()
{
: QObject(parent)
{
if (@available(macOS 11.0, *)) {
- d.reset(new FileProviderDomainManager::Private());
+ d.reset(new FileProviderDomainManager::MacImplementation());
ConfigFile cfg;
std::chrono::milliseconds polltime = cfg.remotePollInterval();