Click here to Skip to main content
15,898,035 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
GeneralRe: Vector class is missing 'rerase' Pin
Roland Pibinger13-Jul-05 12:43
Roland Pibinger13-Jul-05 12:43 
GeneralRe: Vector class is missing 'rerase' Pin
Nemanja Trifunovic14-Jul-05 2:19
Nemanja Trifunovic14-Jul-05 2:19 
GeneralRe: Vector class is missing 'rerase' Pin
Rob Caldecott14-Jul-05 5:25
Rob Caldecott14-Jul-05 5:25 
GeneralBoost Pin
Rob Caldecott11-Jul-05 21:14
Rob Caldecott11-Jul-05 21:14 
GeneralRe: Boost Pin
Nemanja Trifunovic12-Jul-05 3:17
Nemanja Trifunovic12-Jul-05 3:17 
GeneralRe: Boost Pin
guypremont12-Jul-05 3:31
guypremont12-Jul-05 3:31 
GeneralRe: Boost Pin
Stuart Dootson12-Jul-05 8:30
professionalStuart Dootson12-Jul-05 8:30 
GeneralRe: Boost Pin
Rob Caldecott12-Jul-05 11:02
Rob Caldecott12-Jul-05 11:02 
Yeh, bind. Very useful. I have been using containers of shared_ptr's, and it is so cool that I can do something like:

class CFoo
{
    ...
    void fn(int n, std::string str)
    {
        // Do something
    }
};

...

std::vector<boost::shared_ptr<CFoo> > v;
v.push_back(boost::shared_ptr<CFoo>(new CFoo));
...
for_each(v.begin(), v.end(), boost::bind(&CFoo::fn, _1, 1234, "Boost!"));


Splendid. Using boost::bind for std::find_if is also very useful. So much to learn...
GeneralRe: Boost Pin
CP Visitor12-Jul-05 22:41
CP Visitor12-Jul-05 22:41 
GeneralRe: Boost Pin
Rob Caldecott12-Jul-05 22:51
Rob Caldecott12-Jul-05 22:51 
GeneralRe: Boost Pin
CP Visitor13-Jul-05 6:28
CP Visitor13-Jul-05 6:28 
GeneralRe: Boost Pin
Rob Caldecott13-Jul-05 7:28
Rob Caldecott13-Jul-05 7:28 
GeneralRe: Boost Pin
Joaquín M López Muñoz12-Jul-05 11:27
Joaquín M López Muñoz12-Jul-05 11:27 
GeneralRe: Boost Pin
Nemanja Trifunovic12-Jul-05 12:49
Nemanja Trifunovic12-Jul-05 12:49 
GeneralRe: Boost Pin
Nish Nishant13-Jul-05 19:46
sitebuilderNish Nishant13-Jul-05 19:46 
GeneralRe: Boost Pin
Stuart Dootson13-Jul-05 21:36
professionalStuart Dootson13-Jul-05 21:36 
GeneralRe: Boost Pin
Nish Nishant20-Jul-05 2:06
sitebuilderNish Nishant20-Jul-05 2:06 
Questionwmiatlprov.h documentation? Pin
Lego Bragis11-Jul-05 21:11
Lego Bragis11-Jul-05 21:11 
GeneralHandling ATL COM events in Win32 exe using eVC++ Pin
Gaganjit Singh Grewal11-Jul-05 20:02
Gaganjit Singh Grewal11-Jul-05 20:02 
QuestionCListViewCtrl: how to place background image? Pin
George Ulyanov8-Jul-05 18:02
George Ulyanov8-Jul-05 18:02 
AnswerRe: CListViewCtrl: how to place background image? Pin
Michael Dunn8-Jul-05 18:44
sitebuilderMichael Dunn8-Jul-05 18:44 
GeneralWTL - hosting ActiveX controls Pin
cberk8-Jul-05 12:22
cberk8-Jul-05 12:22 
GeneralRe: WTL - hosting ActiveX controls Pin
cberk8-Jul-05 13:10
cberk8-Jul-05 13:10 
GeneralRe: WTL - hosting ActiveX controls Pin
Michael Dunn8-Jul-05 18:49
sitebuilderMichael Dunn8-Jul-05 18:49 
Question[newbie] subclass std::list? Pin
ehh8-Jul-05 4:08
ehh8-Jul-05 4:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.