#ifndef PATIENTEMERGENCYINFO_H #define PATIENTEMERGENCYINFO_H #include 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; quint64 realCountDownInSeconds; signals: public slots: }; #endif // PATIENTEMERGENCYINFO_H