mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
12 lines
159 B
C++
12 lines
159 B
C++
#include "CtrlCore.h"
|
|
|
|
NAMESPACE_UPP
|
|
|
|
void Ctrl::Xmlize(XmlIO xml)
|
|
{
|
|
Value v = GetData();
|
|
UPP::Xmlize(xml, v);
|
|
SetData(v);
|
|
}
|
|
|
|
END_UPP_NAMESPACE
|