ultimatepp/reference/CtrlRangeLoop/main.cpp
cxl 9f04d9459f .reference
git-svn-id: svn://ultimatepp.org/upp/trunk@15469 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-11-20 09:36:15 +00:00

18 lines
220 B
C++

#include <CtrlLib/CtrlLib.h>
using namespace Upp;
GUI_APP_MAIN
{
TopWindow w;
EditString a, b;
w << a << b;
a <<= "Hello ";
b <<= "world!";
String h;
for(Ctrl& q : w)
h << ~q;
DUMP(h);
}