playerlauncher.h 333 B

123456789101112131415161718192021
  1. #ifndef PLAYERLAUNCHER_H
  2. #define PLAYERLAUNCHER_H
  3. #include <QObject>
  4. #include <QString>
  5. class PlayerLauncher : public QObject
  6. {
  7. Q_OBJECT
  8. public:
  9. explicit PlayerLauncher(QObject *parent = 0);
  10. signals:
  11. public slots:
  12. void launchPlayer(const QString &url);
  13. };
  14. #endif // PLAYERLAUNCHER_H