Testcases autogenerated from the Boost.Function tutorial

[SVN r16711]
This commit is contained in:
Douglas Gregor
2002-12-28 03:44:00 +00:00
parent 3b644dbfff
commit 951cb3acd4
10 changed files with 251 additions and 0 deletions

23
test/mem_fun_portable.cpp Normal file
View 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);
}