1
Як використовувати boost bind з функцією-членом
Наступний код призводить до аварійного завершення роботи cl.exe (MS VS2005). Я намагаюся використовувати boost bind для створення функції для викликів методом myclass: #include "stdafx.h" #include <boost/function.hpp> #include <boost/bind.hpp> #include <functional> class myclass { public: void fun1() { printf("fun1()\n"); } void fun2(int i) { printf("fun2(%d)\n", i); } void testit() { boost::function<void …