Project

General

Profile

Kinect Scol plugin
Thread.cpp
1 /*
2 -----------------------------------------------------------------------------
3 This source file is part of OpenSpace3D
4 For the latest info, see http://www.openspace3d.com
5 
6 Copyright (c) 2012 I-maginer
7 
8 This program is free software; you can redistribute it and/or modify it under
9 the terms of the GNU Lesser General Public License as published by the Free Software
10 Foundation; either version 2 of the License, or (at your option) any later
11 version.
12 
13 This program is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
16 
17 You should have received a copy of the GNU Lesser General Public License along with
18 this program; if not, write to the Free Software Foundation, Inc., 59 Temple
19 Place - Suite 330, Boston, MA 02111-1307, USA, or go to
20 http://www.gnu.org/copyleft/lesser.txt
21 
22 -----------------------------------------------------------------------------
23 */
24 
32 #include "core/Thread.h"
33 
34 Thread::Thread()
35 {
36  isRunning = false;
37 }
38 
39 void Thread::StartThreading(boost::function<void()> threadFunction)
40 {
41  isRunning = true;
42  mthread = boost::thread(threadFunction);
43 }
44 
45 void Thread::StopThreading()
46 {
47  if (isRunning)
48  {
49  isRunning = false;
50  mthread.join();
51  }
52 }
53 
54 bool Thread::IsRunning()
55 {
56  return isRunning;
57 }