Clementine-audio-player-Mac.../src/lastfmstationdialog.h

27 lines
402 B
C
Raw Normal View History

2009-12-30 03:15:38 +01:00
#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