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.
23 lines
494 B
23 lines
494 B
#ifndef PATIENTEMERGENCYINFO_H
|
|
#define PATIENTEMERGENCYINFO_H
|
|
|
|
#include <QObject>
|
|
|
|
class PatientEmergencyInfo : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit PatientEmergencyInfo(
|
|
QString id,QString name,QString text,quint64 realCountDownInSeconds,QObject *parent = 0);
|
|
PatientEmergencyInfo(QString id,QObject *parent = 0);
|
|
QString id;
|
|
QString name;
|
|
QString text;
|
|
qint64 realCountDownInSeconds;
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
};
|
|
|
|
#endif // PATIENTEMERGENCYINFO_H
|
|
|