| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /*
- This file is part of Telegram Desktop,
- the official desktop application for the Telegram messaging service.
- For license and copyright information please follow this link:
- https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
- */
- #pragma once
- #ifdef Q_OS_MAC
- #include "platform/mac/file_bookmark_mac.h"
- #else // Q_OS_MAC
- namespace Platform {
- class FileBookmark {
- public:
- FileBookmark(const QByteArray &bookmark) {
- }
- bool check() const {
- return true;
- }
- bool enable() const {
- return true;
- }
- void disable() const {
- }
- const QString &name(const QString &original) const {
- return original;
- }
- QByteArray bookmark() const {
- return QByteArray();
- }
- };
- [[nodiscard]] inline QByteArray PathBookmark(const QString &path) {
- return QByteArray();
- }
- } // namespace Platform
- #endif // Q_OS_MAC
|