Fawkes API Fawkes Development Version
source.cpp
1
2/***************************************************************************
3 * source.cpp - Abstract class defining a camera source controller
4 *
5 * Created: Mon Jun 29 15:47:11 2009
6 * Copyright 2009 Tobias Kellner
7 * 2005-2009 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#include <fvcams/control/source.h>
26
27namespace firevision {
28
29/** @class CameraControlSource <fvcams/control/source.h>
30 * Camera source control interface.
31 * Some cameras have multiple image sources; with this control, it is
32 * possible to switch between them.
33 *
34 * @author Tobias Kellner
35 *
36 *
37 * @fn unsigned char CameraControlSource::source() = 0
38 * Return the currently selected image source.
39 * @return id of the currently selected source
40 *
41 * @fn void CameraControlSource::set_source(unsigned char source) = 0
42 * Set the current image source.
43 * @param source id of the new source
44 */
45
46/** Empty virtual destructor. */
48{
49}
50
51} // end namespace firevision
virtual ~CameraControlSource()
Empty virtual destructor.
Definition: source.cpp:47