Newer
Older
CasicIrisIdentify / LockScreenForm.h
tanyue on 16 Dec 2023 451 bytes 20231216 debug on ubuntu arm
#ifndef LOCKSCREENFORM_H
#define LOCKSCREENFORM_H

#include <QWidget>
#include <QDateTime>

#include "utils/UtilInclude.h"

namespace Ui {
class LockScreenForm;
}

class LockScreenForm : public QWidget
{
    Q_OBJECT

public:
    explicit LockScreenForm(QWidget *parent = nullptr);
    ~LockScreenForm();

public slots:
    void showLockScreenTime();

private:
    Ui::LockScreenForm *ui;
};

#endif // LOCKSCREENFORM_H