1 // This file is part of Desktop App Toolkit,
2 // a set of libraries for developing nice desktop applications.
3 //
4 // For license and copyright information please follow this link:
5 // https://github.com/desktop-app/legal/blob/master/LEGAL
6 //
7 #pragma once
8 
9 #include <vector>
10 #include <QtCore/QString>
11 
12 namespace codegen {
13 namespace emoji {
14 
15 struct Options {
16 	QString outputPath = ".";
17 	QString dataPath;
18 	QString replacesPath;
19 	std::vector<QString> oldDataPaths;
20 	QString writeImages;
21 };
22 
23 // Parsing failed if inputPath is empty in the result.
24 Options parseOptions();
25 
26 } // namespace emoji
27 } // namespace codegen
28