world.h
Go to the documentation of this file.
00001 #include <iostream>
00002 
00003 #include <boost/thread.hpp>
00004 
00005 void print_world() {
00006     std::cout << "world!" << std::endl;
00007 }
00008 
00009 void world() {
00010     boost::thread t(print_world);
00011     t.join();
00012 }


catkin_simple
Author(s): William Woodall , Dirk Thomas
autogenerated on Thu Jun 6 2019 19:49:46