---------------------------------------------------------------------------
| 77 | } |
| 78 | //--------------------------------------------------------------------------- |
| 79 | void TMessProcess::Save(XMLElementEx * p) |
| 80 | { |
| 81 | p->wb("ignore", bIgnore); |
| 82 | p->wb("alarm", bAlarm); |
| 83 | p->ws("alarmmess", AlarmMess); |
| 84 | p->wb("sound", bSound); |
| 85 | p->ws("soundfile", SoundFile); |
| 86 | p->wi("playcount", PlayCount); |
| 87 | p->wb("sendmail", bSendMail); |
| 88 | p->ws("recipient", Recipient); |
| 89 | p->wb("runprog", bRunProg); |
| 90 | p->ws("progfile", ProgFile); |
| 91 | p->wb("proghide", bProgHide); |
| 92 | p->wb("savetofile", bSaveToFile); |
| 93 | p->wi("savefile", SaveFile); |
| 94 | } |
| 95 | //--------------------------------------------------------------------------- |
| 96 | void TMessProcess::Load(XMLElementEx * p) |
| 97 | { |
nothing calls this directly
no test coverage detected