Newer
Older
SurgeTankControl / loginlistform.h
[wangxitong] on 27 Jan 2022 446 bytes first commit
#ifndef LOGINLISTFORM_H
#define LOGINLISTFORM_H

#include <QWidget>
#include <QDate>
namespace Ui {
class LoginListForm;
}

class LoginListForm : public QWidget
{
    Q_OBJECT

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

private slots:
    void on_search_clicked();
    void updateLastDate(QDate);

    void on_export_data_clicked();

private:
    Ui::LoginListForm *ui;
};

#endif // LOGINLISTFORM_H