blob: e55ae6c0cc820796277f1982c61e1eb923037659 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef COLLECTIONWEBRADIOVIEW_H
#define COLLECTIONWEBRADIOVIEW_H
#include "collectionwidget.h"
class CollectionWebradioView : public CollectionWidget {
public:
CollectionWebradioView(QWidget *parent = nullptr);
public slots:
virtual void populate();
};
#endif // COLLECTIONWEBRADIOVIEW_H
|