#ifndef GETBPMMANUALLY_H #define GETBPMMANUALLY_H #include #include #include #include #include #include using namespace std; class GetBpmManually: public QObject { Q_OBJECT public: GetBpmManually(QObject* parent = nullptr); QTimer* timer; QTimer* timer2; QString qBPM; int actualBPM; void startTimer(int ms); int i; float avg; public slots: QString obtainActualBpm(); void resetActualBPM(); private: ~GetBpmManually(); }; #endif // GETBPMMANUALLY_H