mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
f52f6e2d44
git-subtree-dir: src/gui/qocoa git-subtree-split: ffe23cbb2f221bc9eacd1de2134c2947fed71c12
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
|