add examples in "quick/item-model"; lots of minor revisions;

This commit is contained in:
polos 2017-02-01 16:36:18 +01:00
parent d773093dbd
commit 376b7caed4
55 changed files with 3410 additions and 3006 deletions

View file

@ -0,0 +1,25 @@
#ifndef LIB_H
#define LIB_H
#include <QtQml>
#ifdef Q_OS_WIN
#define LIB_EXPORT __declspec(dllexport)
#else
#define LIB_EXPORT
#endif
QT_BEGIN_NAMESPACE
extern "C" { LIB_EXPORT QObject* ini(); }
class Lisp : public QObject {
Q_OBJECT
public:
Q_INVOKABLE QVariant apply(QObject*, const QString&, const QVariantList& = QVariantList());
};
QT_END_NAMESPACE
#endif