YAPOG  0.0.1
Yet Another Pokemon Online Game
Thread.hxx
Go to the documentation of this file.
1 #ifndef YAPOG_THREAD_HXX
2 # define YAPOG_THREAD_HXX
3 
4 namespace yap
5 {
6  template <typename FunctionType, typename ArgsType>
7  inline Thread::Thread (FunctionType function, ArgsType args)
8  : thread_ (function, args)
9  {
10  }
11 } // namespace yap
12 
13 #endif // YAPOG_THREAD_HXX