mirror of
https://github.com/NohamR/Reclass.git
synced 2026-05-10 19:59:21 +00:00
Adds Export ReClass XML menu item that writes NodeTree to ReClass .NET compatible XML format with full round-trip fidelity. Removes test cases that referenced local machine file paths.
11 lines
311 B
C++
11 lines
311 B
C++
#pragma once
|
|
#include "core.h"
|
|
|
|
namespace rcx {
|
|
|
|
// Export a NodeTree to ReClass .NET / ReClassEx compatible XML format.
|
|
// Returns true on success; populates errorMsg on failure if non-null.
|
|
bool exportReclassXml(const NodeTree& tree, const QString& filePath, QString* errorMsg = nullptr);
|
|
|
|
} // namespace rcx
|