Boost logo

Boost :

From: E. Gladyshev (egladysh_at_[hidden])
Date: 2003-07-26 17:06:24


> I personally would like such a facility to play well
> with wxWindows:

The proposed library won't know about any particular
system. It is up to the specified traits to provide
the needed low-level functionality. Theorically you
should be able to use different low-level system at
the same time. For example,

ListControl<std::vector::const_iterator, Win32Traits>
win32list;
ListControl<std::vector::const_iterator, wxTraits>
wxlist;

std::vector<std::string> data;
win32list.set(data.begin(), data.end())
wxlist.set(data.begin(), data.end());

Eugene

__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk