virtual bool close()
    {
        thr->stop();
        delete thr;

        return true;
    }
예제 #2
0
파일: main.cpp 프로젝트: apaikan/icub-main
 virtual bool   close()
 {
     if (control_thr)
     {
         control_thr->stop();
         delete control_thr;
     }
     return true;
 }