mirror of
https://github.com/YACReader/yacreader
synced 2025-05-27 19:00:29 -04:00
22 lines
331 B
C++
22 lines
331 B
C++
#ifndef SEARCH_VOLUME_H
|
|
#define SEARCH_VOLUME_H
|
|
|
|
#include <QWidget>
|
|
|
|
class ScraperLineEdit;
|
|
|
|
class SearchVolume : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
SearchVolume(QWidget *parent = nullptr);
|
|
void clean();
|
|
public slots:
|
|
QString getVolumeInfo();
|
|
|
|
private:
|
|
ScraperLineEdit *volumeEdit;
|
|
};
|
|
|
|
#endif // SEARCH_VOLUME_H
|