Added more templated classes
[lqt/mk.git] / generator / qtemplates.lua
blob7feb5f4c0e7f20fe8f42b4aef7a390d3f28a20a2
1 return {
2 -- example usage:
3 --
4 -- ["ex<T>"] = { "ex<double>", "ex<string>" }
5 -- module = { ["ex2<K,V>"] = { "example<char*, int>" } }
7 qtcore = {
8 ["QList<T>"] = { "QList<QString>", "QList<QFileInfo>", "QList<QVariant>" },
9 },
10 qtgui = {
11 ["QList<T>"] = { "QList<QGraphicsItem*>", "QList<int>", "QList<qreal>",
12 "QList<QModelIndex>", "QList<QSize>", "QList<QPolygonF>", "QList<QKeySequence>",
13 "QList<QUrl>" },
14 ["QVector<T>"] = { "QVector<QPointF>", "QVector<QPoint>", "QVector<QRgb>", "QVector<QLine>",
15 "QList<QRectF>", "QVector<QTextLength>", "QVector<QGradientStop>" },
17 qtnetwork = {
18 ["QList<T>"] = { "QList<QSslError>", "QList<QSslCertificate>", "QList<QNetworkCookie>",
19 "QList<QSslCipher>", "QList<QNetworkAddressEntry>", "QList<QNetworkProxy>",
20 "QList<QHostAddress>", }