Fawkes API  Fawkes Development Version
plugin_director_thread.cpp
1 
2 /***************************************************************************
3  * plugin_director_thread.cpp - CEDAR plugin manager access
4  *
5  * Created: Fri Dec 13 18:23:33 2013
6  * Copyright 2006-2013 Tim Niemueller [www.niemueller.de]
7  ****************************************************************************/
8 
9 /* This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU Library General Public License for more details.
18  *
19  * Read the full text in the LICENSE.GPL file in the doc directory.
20  */
21 
22 #include "plugin_director_thread.h"
23 
24 using namespace fawkes;
25 
26 /** @class CedarPluginDirectorThread "plugin_director_thread.h"
27  * Plugin manager access for CEDAR.
28  * @author Tim Niemueller
29  */
30 
31 /** Constructor. */
33 : Thread("CedarPluginDirectorThread", Thread::OPMODE_WAITFORWAKEUP)
34 {
35 }
36 
37 /** Destructor. */
39 {
40 }
41 
42 void
44 {
45 }
CedarPluginDirectorThread::CedarPluginDirectorThread
CedarPluginDirectorThread()
Constructor.
Definition: plugin_director_thread.cpp:32
fawkes
CedarPluginDirectorThread::~CedarPluginDirectorThread
virtual ~CedarPluginDirectorThread()
Destructor.
Definition: plugin_director_thread.cpp:38
CedarPluginDirectorThread::loop
virtual void loop()
Code to execute in the thread.
Definition: plugin_director_thread.cpp:43
fawkes::Thread
Definition: thread.h:45