Files
tdesktop/Telegram/SourceFiles/platform/linux/text_recognition_linux.h

24 lines
519 B
C++

/*
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
#include "platform/platform_text_recognition.h"
namespace Platform {
namespace TextRecognition {
inline bool IsAvailable() {
return false;
}
inline Result RecognizeText(const QImage &image) {
return {};
}
} // namespace TextRecognition
} // namespace Platform