/* * MultithreadingExample2.h * * Created on: Jan 13, 2014 * Author: ron1234 */ #ifndef MULTITHREADINGEXAMPLE2_H_ #define MULTITHREADINGEXAMPLE2_H_ namespace std { class MultithreadingExample2 { public: MultithreadingExample2(); void createThreads(); void *function1(void *arg); void *function2(void *arg); virtual ~MultithreadingExample2(); }; } /* namespace std */ #endif /* MULTITHREADINGEXAMPLE2_H_ */