2016-11-28 18:45:07 +03:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 13:23:14 +03:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2016-11-28 18:45:07 +03:00
|
|
|
|
2018-01-03 13:23:14 +03:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2016-11-28 18:45:07 +03:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2017-02-28 13:51:00 +03:00
|
|
|
#include "platform/platform_file_utilities.h"
|
2016-12-01 14:38:04 +03:00
|
|
|
|
2016-11-28 18:45:07 +03:00
|
|
|
namespace Platform {
|
2017-02-28 13:51:00 +03:00
|
|
|
namespace File {
|
|
|
|
|
|
|
|
inline QString UrlToLocal(const QUrl &url) {
|
|
|
|
return url.toLocalFile();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace File
|
2016-11-28 18:45:07 +03:00
|
|
|
} // namespace Platform
|