fork download
  1. #include <iostream> /* C++ iostream C++98/11 */
  2. #include <string> /* C++ strings C++98/11 */
  3. #include <boost/function.hpp> /* RegEx Boost */
  4.  
  5. typedef boost::function<bool(void *)> mtsHandlerT;
  6.  
  7. int main() {
  8.  
  9. mtsHandlerT func = NULL;
  10.  
  11. std::cout << "func:" << func << "\n";
  12.  
  13. }
  14.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
func:0