lqml/examples/camera/cpp/qt.h
2024-05-23 10:28:06 +02:00

19 lines
289 B
C++

#pragma once
#include <QtCore>
#ifdef Q_CC_MSVC
#define LIB_EXPORT __declspec(dllexport)
#else
#define LIB_EXPORT
#endif
extern "C" { LIB_EXPORT QObject* ini(); }
class QT : public QObject {
Q_OBJECT
public:
Q_INVOKABLE QVariant rotateImage(const QVariant&, const QVariant&);
};