world.h
Go to the documentation of this file.
1 #include <iostream>
2 
3 #include <boost/thread.hpp>
4 
5 void print_world() {
6  std::cout << "world!" << std::endl;
7 }
8 
9 void world() {
10  boost::thread t(print_world);
11  t.join();
12 }
void print_world()
Definition: world.h:5
void world()
Definition: world.h:9


catkin_simple
Author(s): William Woodall , Dirk Thomas
autogenerated on Mon Jun 10 2019 15:37:40