blob: 3cb89821bf3e640bf6fb7e9bfe784371ff9a68d0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// SPDX-FileCopyrightText: Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later
// DO NOT EDIT Provider.h DIRECTLY! EDIT IT IN scripts/emoji_codegen.py AND RUN scripts/codegen.sh!
#pragma once
#include "Emoji.h"
#include <array>
namespace emoji {
class Provider
{
public:
// all emoji for QML purposes
static const std::array<Emoji, 3799> emoji;
};
} // namespace emoji
|