mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-16 19:31:02 +01:00
15 lines
178 B
C++
15 lines
178 B
C++
#ifndef GALLERY_H
|
|
#define GALLERY_H
|
|
|
|
#include <QWidget>
|
|
|
|
class Gallery : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Gallery(QWidget *parent = 0);
|
|
};
|
|
|
|
#endif // WIDGET_H
|