34 lines
		
	
	
	
		
			754 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			754 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 "codegen/common/logging.h"
 | 
						|
#include "codegen/emoji/data.h"
 | 
						|
#include <QtCore/QVector>
 | 
						|
 | 
						|
namespace codegen {
 | 
						|
namespace emoji {
 | 
						|
 | 
						|
struct Replace {
 | 
						|
	Id id;
 | 
						|
	QString replacement;
 | 
						|
	QVector<QString> words;
 | 
						|
};
 | 
						|
 | 
						|
struct Replaces {
 | 
						|
	Replaces(const QString &filename) : filename(filename) {
 | 
						|
	}
 | 
						|
	QString filename;
 | 
						|
	QVector<Replace> list;
 | 
						|
};
 | 
						|
 | 
						|
Replaces PrepareReplaces(const QString &filename);
 | 
						|
bool CheckAndConvertReplaces(Replaces &replaces, const Data &data);
 | 
						|
 | 
						|
} // namespace emoji
 | 
						|
} // namespace codegen
 |