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
27namespace firevision {
28
29/** @class CameraControl <fvcams/control/control.h>
30 * Camera control interface base class.
31 * Some cameras feature an actuator to allow for panning and tilting the
32 * camera or support additional features like setting the focus, using
33 * zoom or using effects.
34 *
35 * This is the base class for different kinds of such camera controls.
36 * They can be instantiated through the CameraControlFactory.
37 *
38 * @see CameraControlFactory
39 * @author Tim Niemueller
40 * @author Tobias Kellner
41 */
42
43/** Virtual empty destructor. */
45{
46}
47
48} // end namespace firevision
virtual ~CameraControl()
Virtual empty destructor.
Definition: control.cpp:44