mirror of
https://github.com/boostorg/function.git
synced 2025-07-29 12:27:15 +02:00
Testcases autogenerated from the Boost.Function tutorial
[SVN r16711]
This commit is contained in:
22
test/std_bind_cxx98.cpp
Normal file
22
test/std_bind_cxx98.cpp
Normal file
@ -0,0 +1,22 @@
|
||||
|
||||
|
||||
#include <boost/function.hpp>
|
||||
#include <iostream>
|
||||
#include <functional>
|
||||
|
||||
|
||||
struct X {
|
||||
int foo(int);
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
|
||||
boost::function<int (int)> f;
|
||||
X x;
|
||||
f = std::bind1st(std::mem_fun(&X::foo), &x);
|
||||
|
||||
f(5); // Call x.foo(5)
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user