Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #include <VimbaCPP/Source/IntFeature.h>
00030
00031 namespace AVT {
00032 namespace VmbAPI {
00033
00034 IntFeature::IntFeature( const VmbFeatureInfo_t *featureInfo, FeatureContainer* const pFeatureContainer )
00035 : BaseFeature( featureInfo, pFeatureContainer )
00036 {
00037 }
00038
00039 VmbErrorType IntFeature::GetValue( VmbInt64_t &rnValue ) const
00040 {
00041 if ( NULL == m_pFeatureContainer )
00042 {
00043 return VmbErrorDeviceNotOpen;
00044 }
00045
00046 return (VmbErrorType)VmbFeatureIntGet( m_pFeatureContainer->GetHandle(), m_featureInfo.name.c_str(), &rnValue );
00047 }
00048
00049 VmbErrorType IntFeature::SetValue( const VmbInt64_t &rnValue )
00050 {
00051 if ( NULL == m_pFeatureContainer )
00052 {
00053 return VmbErrorDeviceNotOpen;
00054 }
00055
00056 return (VmbErrorType)VmbFeatureIntSet( m_pFeatureContainer->GetHandle(), m_featureInfo.name.c_str(), rnValue );
00057 }
00058
00059 VmbErrorType IntFeature::GetRange( VmbInt64_t &rnMinimum, VmbInt64_t &rnMaximum ) const
00060 {
00061 if ( NULL == m_pFeatureContainer )
00062 {
00063 return VmbErrorDeviceNotOpen;
00064 }
00065
00066 return (VmbErrorType)VmbFeatureIntRangeQuery( m_pFeatureContainer->GetHandle(), m_featureInfo.name.c_str(), &rnMinimum, &rnMaximum );
00067 }
00068
00069 VmbErrorType IntFeature::HasIncrement( VmbBool_t & incrementSupported) const
00070 {
00071 incrementSupported = VmbBoolTrue;
00072 return VmbErrorSuccess;
00073 }
00074 VmbErrorType IntFeature::GetIncrement( VmbInt64_t &rnIncrement ) const
00075 {
00076 if ( NULL == m_pFeatureContainer )
00077 {
00078 return VmbErrorDeviceNotOpen;
00079 }
00080
00081 return (VmbErrorType)VmbFeatureIntIncrementQuery( m_pFeatureContainer->GetHandle(), m_featureInfo.name.c_str(), &rnIncrement );
00082 }
00083
00084
00085 }}