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