include/avcap/Connector.h

Go to the documentation of this file.
00001 /*
00002  * (c) 2005, 2008 Nico Pranke <Nico.Pranke@googlemail.com>, Robin Luedtke <RobinLu@gmx.de> 
00003  *
00004  * This file is part of avcap.
00005  *
00006  * avcap is free software: you can redistribute it and/or modify
00007  * it under the terms of the GNU General Public License as published by
00008  * the Free Software Foundation, either version 3 of the License, or
00009  * (at your option) any later version.
00010  *
00011  * avcap is distributed in the hope that it will be useful,
00012  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00013  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00014  * GNU General Public License for more details.
00015  *
00016  * You should have received a copy of the GNU General Public License
00017  * along with avcap.  If not, see <http://www.gnu.org/licenses/>.
00018  */
00019 
00020 /* avcap is free for non-commercial use.
00021  * To use it in commercial endeavors, please contact Nico Pranke <Nico.Pranke@googlemail.com>
00022  */
00023 
00024 
00025 #ifndef CONNECTOR_H_
00026 #define CONNECTOR_H_
00027 
00028 #if !defined(_MSC_VER) && !defined(USE_PREBUILD_LIBS)
00029 # include "avcap-config.h"
00030 #endif
00031 
00032 #ifdef AVCAP_LINUX
00033 # include <linux/types.h>
00034 # include <linux/videodev.h>
00035 #endif
00036 
00037 #include <string>
00038 #include <list>
00039 
00040 #include "avcap-export.h"
00041 
00042 namespace avcap
00043 {       
00044         // forward declaration
00045         class DeviceDescriptor;
00046         class Tuner;
00047         
00049         
00056         class AVCAP_Export Connector
00057         {
00058         public:
00059 #ifdef AVCAP_LINUX
00060                 enum
00061                 {
00062                         INPUT_TYPE_TUNER = V4L2_INPUT_TYPE_TUNER
00063                 };
00064 #endif
00065                 
00066         protected:
00067                 DeviceDescriptor*       mDeviceDescriptor;
00068                 int                                     mIndex;
00069                 int                                     mAudioset;
00070                 int                                     mType;
00071                 std::string                     mName;
00072                 
00073         public:
00075                 inline Connector(DeviceDescriptor *dd, int index, const std::string& name, int type=0, int audioset=0):
00076                         mDeviceDescriptor(dd), mIndex(index), mName(name), mType(type), mAudioset(audioset)
00077                         {}
00078 
00080                 virtual inline ~Connector() 
00081                         {}
00082 
00084 
00085                 inline int getIndex() const 
00086                         { return mIndex; }
00087                 
00089 
00095                 inline int getAudioset() const 
00096                         { return mAudioset; }
00097                 
00099 
00102                 virtual inline Tuner* getTuner() 
00103                         { return 0; }
00104                 
00106 
00107                 inline const std::string& getName() const 
00108                         { return mName; }
00109                 
00111 
00112                 virtual inline bool hasTuner() const 
00113                         { return false; }
00114         };
00115 };
00116 
00117 #endif // CONNECTOR_H_

Generated on Mon Nov 30 11:10:30 2009 for avcap-0.1 by  doxygen 1.5.1