This commit is contained in:
2024-07-17 14:14:38 +03:00
parent f041d1435e
commit b35561f74e

View File

@@ -282,9 +282,9 @@ public:
const PIValueTree & operator[](const PIString & name) const { return child(name); }
//! \~\brief
//! \~english Recursive call "func" for every child. "full_name" is a name with path, joined with ".".
//! \~russian Рекурсивно выполняет "func" для каждого узла. "full_name" - это имя с путём, соединены ".".
void forEachRecursive(std::function<void(const PIValueTree & item, const PIString & full_name)> func);
//! \~english Recursive call "func" for every child. "path" is a name with path, joined with ".".
//! \~russian Рекурсивно выполняет "func" для каждого узла. "path" - это имя с путём, соединены ".".
void forEachRecursive(std::function<void(const PIValueTree & item, const PIString & path)> func);
//! \~\brief
//! \~english Returns a list of standard attribute names.