|
1234567891011121314151617 |
- #ifndef MLALERT_H
- #define MLALERT_H
- #include <string>
-
- enum CustomAlertTypes{
- NO_ALERT,
- CRIT_RCM_TENDENCY,
- };
-
- struct MLAlert{
- CustomAlertTypes type;
- std::string message;
-
- MLAlert(CustomAlertTypes type, std::string message): type(type), message(message){}
- };
-
- #endif // MLALERT_H
|