| 344 | } |
| 345 | |
| 346 | bool CXmlScriptSaver::GetAt(int elem, TValue& value, const XmlNodeRef& definition) |
| 347 | { |
| 348 | CGetAtVisitor visitor(CurTable(), elem); |
| 349 | boost::apply_visitor(visitor, value); |
| 350 | return visitor.Ok(); |
| 351 | } |
| 352 | |
| 353 | bool CXmlScriptSaver::HaveElemAt(int elem) |
| 354 | { |
no test coverage detected