mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-22 05:34:33 +03:00
19 lines
229 B
C
19 lines
229 B
C
|
#ifndef STATUSDIALOG_H
|
||
|
#define STATUSDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
class StatusDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit StatusDialog(QWidget *parent = 0);
|
||
|
|
||
|
signals:
|
||
|
|
||
|
public slots:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // STATUSDIALOG_H
|