32 lines
		
	
	
	
		
			726 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			726 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 "ui/text/text_entity.h"
 | |
| 
 | |
| namespace Main {
 | |
| class Session;
 | |
| } // namespace Main
 | |
| 
 | |
| namespace Api {
 | |
| 
 | |
| enum class ConvertOption {
 | |
| 	WithLocal,
 | |
| 	SkipLocal,
 | |
| };
 | |
| 
 | |
| [[nodiscard]] EntitiesInText EntitiesFromMTP(
 | |
| 	Main::Session *session,
 | |
| 	const QVector<MTPMessageEntity> &entities);
 | |
| 
 | |
| [[nodiscard]] MTPVector<MTPMessageEntity> EntitiesToMTP(
 | |
| 	not_null<Main::Session*> session,
 | |
| 	const EntitiesInText &entities,
 | |
| 	ConvertOption option = ConvertOption::WithLocal);
 | |
| 
 | |
| } // namespace Api
 | 
