You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
319 B
24 lines
319 B
#ifndef LOGINWIDGET_H
|
|
#define LOGINWIDGET_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace dss {
|
|
namespace module_v2 {
|
|
class Dp4LoginModule;
|
|
}
|
|
}
|
|
|
|
class LoginWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
LoginWidget(QWidget *parent = nullptr);
|
|
~LoginWidget();
|
|
|
|
private:
|
|
dss::module_v2::Dp4LoginModule *m_dp4module;
|
|
};
|
|
|
|
#endif
|
|
|