qspwebchannel.h 301 B

12345678910111213141516
  1. #ifndef QSPWEBCHANNEL_H
  2. #define QSPWEBCHANNEL_H
  3. #include <QObject>
  4. class QspWebChannel : public QObject
  5. {
  6. Q_OBJECT
  7. public:
  8. explicit QspWebChannel(QObject *parent = nullptr);
  9. Q_INVOKABLE void ExecString(const QString &string);
  10. private:
  11. void ShowError();
  12. };
  13. #endif // QSPWEBCHANNEL_H