Fawkes API  Fawkes Development Version
control.cpp
1 
2 /***************************************************************************
3  * control.cpp - Abstract base class for camera controllers
4  *
5  * Created: Sun Jan 21 14:53:32 2007
6  * Copyright 2005-2009 Tim Niemueller [www.niemueller.de]
7  * 2009 Tobias Kellner
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 #include <fvcams/control/control.h>
26 
27 namespace firevision {
28 #if 0 /* just to make Emacs auto-indent happy */
29 }
30 #endif
31 
32 /** @class CameraControl <fvcams/control/control.h>
33  * Camera control interface base class.
34  * Some cameras feature an actuator to allow for panning and tilting the
35  * camera or support additional features like setting the focus, using
36  * zoom or using effects.
37  *
38  * This is the base class for different kinds of such camera controls.
39  * They can be instantiated through the CameraControlFactory.
40  *
41  * @see CameraControlFactory
42  * @author Tim Niemueller
43  * @author Tobias Kellner
44  */
45 
46 /** Virtual empty destructor. */
48 {
49 }
50 
51 } // end namespace firevision
virtual ~CameraControl()
Virtual empty destructor.
Definition: control.cpp:47