a lot of stuff

This commit is contained in:
Crylia
2024-07-07 18:21:28 +02:00
parent a3aa086929
commit 06f04f9afa
23 changed files with 574 additions and 561 deletions

View File

@@ -0,0 +1,16 @@
#pragma once
#include <QDialog>
#include <QHBoxLayout>
#include <QPushButton>
#include <QLabel>
class Krankmelden : public QDialog {
Q_OBJECT
protected:
QPushButton* m_accept;
QPushButton* m_decline;
QLabel* m_text;
public:
Krankmelden(const QString& mitarbeiterName, QWidget* parent = nullptr);
};