-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathemoji_entity.h
48 lines (41 loc) · 1.32 KB
/
emoji_entity.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/************************************************************************
*
* Copyright (c) 2014-2025 Barbara Geller & Ansel Sermersheim
*
* Copyright (c) 1997-2014 Dimitri van Heesch
*
* DoxyPress is free software. You can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2 as published by the Free Software Foundation.
*
* DoxyPress is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* Documents produced by DoxyPress are derivative works derived from the
* input used in their production; they are not affected by this license.
*
* https://www.gnu.org/licenses/
*
*************************************************************************/
#ifndef EMOJI_ENTITY_H
#define EMOJI_ENTITY_H
#include <QHash>
#include <QFile>
#include <QTextStream>
class EmojiEntityMapper
{
public:
static EmojiEntityMapper *instance();
static void deleteInstance();
QString name(int index) const;
QString unicode(int index) const;
void writeEmojiFile(QFile &file);
int symbol2index(const QString &symName) const;
private:
EmojiEntityMapper();
~EmojiEntityMapper();
static EmojiEntityMapper *s_instance;
QHash<QString, int> m_name2sym;
};
#endif