| 120 | } |
| 121 | |
| 122 | bool CXml::Init(LPCSTR path_alias, LPCSTR path, LPCSTR _xml_filename) |
| 123 | { |
| 124 | const shared_str fn = correct_file_name(path, _xml_filename); |
| 125 | |
| 126 | string_path str; |
| 127 | sprintf(str, "%s\\%s", path, *fn); |
| 128 | return Init(path_alias, str); |
| 129 | } |
| 130 | |
| 131 | //инициализация и загрузка XML файла |
| 132 | bool CXml::Init(LPCSTR path, LPCSTR xml_filename) |
nothing calls this directly
no test coverage detected