--------------------------------------------------------------------------- message process item
| 7 | //--------------------------------------------------------------------------- |
| 8 | // message process item |
| 9 | class TMessProcess |
| 10 | { |
| 11 | public: |
| 12 | bool bIgnore; // Ignore (do not save to the default file "syslog") |
| 13 | bool bAlarm; // |
| 14 | String AlarmMess; // |
| 15 | bool bSound; // |
| 16 | String SoundFile; // |
| 17 | int PlayCount; // |
| 18 | bool bSendMail; // |
| 19 | String Recipient; // |
| 20 | bool bRunProg; // |
| 21 | String ProgFile; // |
| 22 | bool bProgHide; // |
| 23 | bool bSaveToFile; // |
| 24 | int SaveFile; // link to TStorageFile::number (-1 file not selected) |
| 25 | |
| 26 | public: |
| 27 | TMessProcess(); |
| 28 | String GetDescription(void); |
| 29 | String GetSoundFileName(void); |
| 30 | void Save(XMLElementEx * p); |
| 31 | void Load(XMLElementEx * p); |
| 32 | }; |
| 33 | //--------------------------------------------------------------------------- |
| 34 | // message process rule item |
| 35 | class TMessProcessRule |
nothing calls this directly
no outgoing calls
no test coverage detected