CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 15 of 18

Threaded View

  1. #12
    Lindley is offline Elite Member Power Poster
    Join Date
    Oct 2007
    Location
    Seattle, WA
    Posts
    10,895

    Re: How do I save funtions to be called later?

    The documentation for boost::bind (std::bind is very similar):
    http://www.boost.org/doc/libs/1_47_0...bind/bind.html

    The documentation for boost::function (std::function is very similar):
    http://www.boost.org/doc/libs/1_47_0.../function.html

    I agree that lambdas are more readable than bind, but older compilers do not support them.
    Last edited by Lindley; November 13th, 2011 at 11:11 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured