Fawkes API  Fawkes Development Version
clock.h
1 
2 /***************************************************************************
3  * clock.h - Clock aspect for Fawkes
4  *
5  * Created: Tue Jun 12 18:36:09 2007
6  * Copyright 2007 Daniel Beck
7  * 2007-2010 Tim Niemueller [www.niemueller.de]
8  *
9  ****************************************************************************/
10 
11 /* This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version. A runtime exception applies to
15  * this software (see LICENSE.GPL_WRE file mentioned below for details).
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  * GNU Library General Public License for more details.
21  *
22  * Read the full text in the LICENSE.GPL_WRE file in the doc directory.
23  */
24 
25 #ifndef __ASPECT_CLOCK_H_
26 #define __ASPECT_CLOCK_H_
27 
28 #include <aspect/aspect.h>
29 #include <utils/time/clock.h>
30 
31 namespace fawkes {
32 #if 0 /* just to make Emacs auto-indent happy */
33 }
34 #endif
35 
36 class ClockAspect : public virtual Aspect
37 {
38  public:
39  ClockAspect();
40  virtual ~ClockAspect();
41 
43 
44  protected:
46 };
47 
48 } // end namespace fawkes
49 
50 #endif /*__ASPECT_CLOCK_H_ */
void init_ClockAspect(Clock *clock)
Set the clock.
Definition: clock.cpp:64
Thread aspect that allows to obtain the current time from the clock.
Definition: clock.h:36
Fawkes aspect base class.
Definition: aspect.h:34
Fawkes library namespace.
This is supposed to be the central clock in Fawkes.
Definition: clock.h:34
Clock * clock
By means of this member access to the clock is given.
Definition: clock.h:45
virtual ~ClockAspect()
Virtual empty destructor.
Definition: clock.cpp:53
ClockAspect()
Constructor.
Definition: clock.cpp:47