Fawkes API
Fawkes Development Version
|
00001 00002 /*************************************************************************** 00003 * control.cpp - Abstract base class for camera controllers 00004 * 00005 * Created: Sun Jan 21 14:53:32 2007 00006 * Copyright 2005-2009 Tim Niemueller [www.niemueller.de] 00007 * 2009 Tobias Kellner 00008 * 00009 ****************************************************************************/ 00010 00011 /* This program is free software; you can redistribute it and/or modify 00012 * it under the terms of the GNU General Public License as published by 00013 * the Free Software Foundation; either version 2 of the License, or 00014 * (at your option) any later version. A runtime exception applies to 00015 * this software (see LICENSE.GPL_WRE file mentioned below for details). 00016 * 00017 * This program is distributed in the hope that it will be useful, 00018 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00019 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00020 * GNU Library General Public License for more details. 00021 * 00022 * Read the full text in the LICENSE.GPL_WRE file in the doc directory. 00023 */ 00024 00025 #include <cams/control/control.h> 00026 00027 namespace firevision { 00028 #if 0 /* just to make Emacs auto-indent happy */ 00029 } 00030 #endif 00031 00032 /** @class CameraControl <cams/control/control.h> 00033 * Camera control interface base class. 00034 * Some cameras feature an actuator to allow for panning and tilting the 00035 * camera or support additional features like setting the focus, using 00036 * zoom or using effects. 00037 * 00038 * This is the base class for different kinds of such camera controls. 00039 * They can be instantiated through the CameraControlFactory. 00040 * 00041 * @see CameraControlFactory 00042 * @author Tim Niemueller 00043 * @author Tobias Kellner 00044 */ 00045 00046 /** Virtual empty destructor. */ 00047 CameraControl::~CameraControl() 00048 { 00049 } 00050 00051 } // end namespace firevision