2016-04-17 09:30:14 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2016-04-17 09:30:14 +00:00
|
|
|
|
2018-01-03 10:23:14 +00:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2016-04-17 09:30:14 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QtCore/QString>
|
|
|
|
#include <QtCore/QStringList>
|
|
|
|
|
|
|
|
namespace codegen {
|
|
|
|
namespace style {
|
|
|
|
|
|
|
|
struct Options {
|
|
|
|
QStringList includePaths = { "." };
|
|
|
|
QString outputPath = ".";
|
|
|
|
QString inputPath;
|
2016-10-28 12:44:28 +00:00
|
|
|
bool isPalette = false;
|
2016-04-17 09:30:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Parsing failed if inputPath is empty in the result.
|
|
|
|
Options parseOptions();
|
|
|
|
|
|
|
|
} // namespace style
|
|
|
|
} // namespace codegen
|