blob: 2fc2907e7626c7e1286471dd60953a2e1419b91d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* Copyright (c) 2017 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#pragma once
#include <map>
#include <memory>
#include <string>
#include <Swift/QtUI/QtEmojisGrid.h>
namespace Swift {
class QtEmoticonsGrid : public QtEmojisGrid {
Q_OBJECT
public:
explicit QtEmoticonsGrid(const std::map<std::string, std::string>& emoticonsMap);
~QtEmoticonsGrid();
};
}
|