1
0
mirror of https://github.com/clementine-player/Clementine synced 2025-01-05 14:28:40 +01:00
Clementine-audio-player-Mac.../src/lastfmstationdialog.h
2009-12-30 02:15:38 +00:00

27 lines
402 B
C++

#ifndef LASTFMSTATIONDIALOG_H
#define LASTFMSTATIONDIALOG_H
#include <QDialog>
#include "ui_lastfmstationdialog.h"
class LastFMStationDialog : public QDialog {
Q_OBJECT
public:
LastFMStationDialog(QWidget* parent = 0);
enum Type {
Artist,
Tag,
};
void SetType(Type type);
QString content() const;
private:
Ui::LastFMStationDialog ui_;
};
#endif // LASTFMSTATIONDIALOG_H