mirror of
https://gitlab.com/eql/EQL5.git
synced 2025-12-13 13:50:29 -08:00
25 lines
325 B
C++
25 lines
325 B
C++
#ifndef LIB_H
|
|
#define LIB_H
|
|
|
|
#include <QtGui>
|
|
|
|
#ifdef Q_WS_WIN
|
|
#define LIB_EXPORT __declspec(dllexport)
|
|
#else
|
|
#define LIB_EXPORT
|
|
#endif
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
extern "C" { LIB_EXPORT QObject* ini(); }
|
|
|
|
class CPP : public QObject {
|
|
Q_OBJECT
|
|
public:
|
|
|
|
Q_INVOKABLE QEasingCurve* easingCurve();
|
|
};
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
#endif
|