Digitalisierte Elektroverteilung zur permanenten Verbraucherüberwachung
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.

MLAlert.h 300B

1234567891011121314151617
  1. #ifndef MLALERT_H
  2. #define MLALERT_H
  3. #include <string>
  4. enum CustomAlertTypes{
  5. NO_ALERT,
  6. CRIT_RCM_TENDENCY,
  7. };
  8. struct MLAlert{
  9. CustomAlertTypes type;
  10. std::string message;
  11. MLAlert(CustomAlertTypes type, std::string message): type(type), message(message){}
  12. };
  13. #endif // MLALERT_H