| 360 | } |
| 361 | |
| 362 | bool CXmlScriptSaver::HaveValue(const char* name) |
| 363 | { |
| 364 | ScriptAnyValue value; |
| 365 | if (CurTable()->GetValueAny(name, value)) |
| 366 | if (value.GetVarType() != svtNull) |
| 367 | return true; |
| 368 | return false; |
| 369 | } |
| 370 | |
| 371 | bool CXmlScriptSaver::Complete() |
| 372 | { |
no test coverage detected