syncing uppdev

git-svn-id: svn://ultimatepp.org/upp/trunk@1929 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2010-01-24 13:21:31 +00:00
parent 3c76d02bc6
commit b99842659f
17 changed files with 294 additions and 4 deletions

View file

@ -0,0 +1,20 @@
#include <Core/Core.h>
using namespace Upp;
template <class T>
struct MyVector : public Vector<T> {
void Foo() {}
void Xmlize(XmlIO xml) {
Upp::Xmlize(xml, *this);
}
};
CONSOLE_APP_MAIN
{
MyVector<int> x;
x.Add(10);
DDUMP(StoreAsXML(x, "test"));
LOG("XXX");
}