BIND1 boost::bind 의 기본 사용법 예제 boost::bind 의 이용 예제.. 사실상 응용이라던가 더 복잡한 쓰임은 있지만 대략 이런 역활을 한다 는 것을 익힐 뿐이고 상세한 이용은 검색을 더 해보는 것이 좋을 듯. 실제 asio 에제를 보면 더 많이 , 여러기능이 쓰이는 것을 알 수 있다 예제 // start #include "stdafx.h" #include #include #include #include #include int no_arg() { return 0; } struct one_arg { int operator () (int i) const { return i; } typedef int result_type; }; struct two_arg { int val; two_arg(int v) : val(v) {} int f(int i.. 2011. 11. 16. 이전 1 다음