qpcpp/doxygen/snippets/qf_xctor.cpp

8 lines
277 B
C++
Raw Normal View History

2017-08-21 18:21:15 -04:00
namespace DPP {
// local extended-thread objects .............................................
static void Thread1_run(QP::QXThread * const me); // run routine for Thread1
2017-08-29 16:01:46 -04:00
2017-08-21 18:21:15 -04:00
static QP::QXThread l_test1(&Thread1_run, 0U); //<== QXThread::QXThread() ctor
2017-08-29 16:01:46 -04:00
. . .
2017-08-21 18:21:15 -04:00
} // namespace DPP