だそうです。
http://www.assembla.com/wiki/show/cppgui
#include <gui/gui.hpp> int main() { using namespace gui::keywords; gui::wnd<> w = gui::create<gui::frame_window>( _title = "Hello!", _size = gui::point(100, 100) ); gui::create<gui::controls::button>( _text = "Hello World!", _parent = w ); gui::wait(); }
これに関する議論はここらへん。
http://thread.gmane.org/gmane.comp.lib.boost.devel/190648