mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 03:42:47 +08:00
13 lines
271 B
C++
13 lines
271 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <algorithm>
|
|
|
|
|
|
namespace XmlUtils {
|
|
std::vector<std::wstring> FindAttrValues(const std::wstring& xml, std::wstring attrName);
|
|
std::vector<int> FindAttrValuesInt(const std::wstring& xml, std::wstring attrName);
|
|
}
|
|
|