| 112 | UIMESSAGE_CODE Code; |
| 113 | public: |
| 114 | uiMsgStore(UIMESSAGE_CODE Code) |
| 115 | { |
| 116 | // Init arrays in case a caller passes fewer parameters than expected. |
| 117 | for (uint I=0;I<ASIZE(Str);I++) |
| 118 | Str[I]=L""; |
| 119 | memset(Num,0,sizeof(Num)); |
| 120 | |
| 121 | NumSize=StrSize=0; |
| 122 | this->Code=Code; |
| 123 | } |
| 124 | uiMsgStore& operator << (const wchar *s) |
| 125 | { |
| 126 | if (StrSize<MAX_MSG) |
nothing calls this directly
no outgoing calls
no test coverage detected