2017-06-07 10:09:24 +02:00
|
|
|
#pragma once
|
2017-01-06 23:28:48 +01:00
|
|
|
|
2017-06-11 09:31:45 +02:00
|
|
|
#include "concurrentmap.hpp"
|
|
|
|
#include "messages/lazyloadedimage.hpp"
|
2017-01-18 04:52:47 +01:00
|
|
|
|
2017-01-06 23:28:48 +01:00
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
2017-06-07 10:09:24 +02:00
|
|
|
|
2017-01-07 20:43:55 +01:00
|
|
|
#include <unordered_map>
|
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
namespace chatterino {
|
2017-01-18 21:30:23 +01:00
|
|
|
|
2017-06-26 16:41:20 +02:00
|
|
|
struct EmojiData {
|
|
|
|
QString value;
|
2017-07-02 17:37:17 +02:00
|
|
|
|
|
|
|
// what's used in the emoji-one url
|
2017-06-26 16:41:20 +02:00
|
|
|
QString code;
|
2017-07-02 17:37:17 +02:00
|
|
|
|
|
|
|
// i.e. thinking
|
|
|
|
QString shortCode;
|
2017-06-26 16:41:20 +02:00
|
|
|
};
|
|
|
|
|
2017-06-07 10:09:24 +02:00
|
|
|
} // namespace chatterino
|