include
VimbaCPP
Source
CommandFeature.cpp
Go to the documentation of this file.
1
/*=============================================================================
2
Copyright (C) 2012 Allied Vision Technologies. All Rights Reserved.
3
4
Redistribution of this file, in original or modified form, without
5
prior written consent of Allied Vision Technologies is prohibited.
6
7
-------------------------------------------------------------------------------
8
9
File: CommandFeature.cpp
10
11
Description: Implementation of class AVT::VmbAPI::CommandFeature.
12
Intended for use in the implementation of Vimba CPP API.
13
14
-------------------------------------------------------------------------------
15
16
THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
17
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF TITLE,
18
NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
20
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23
AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
24
TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
27
=============================================================================*/
28
29
#include <
VimbaCPP/Source/CommandFeature.h
>
30
31
namespace
AVT
{
32
namespace
VmbAPI {
33
34
CommandFeature::CommandFeature
(
const
VmbFeatureInfo_t
*featureInfo,
FeatureContainer
*pFeatureContainer )
35
:
BaseFeature
( featureInfo, pFeatureContainer )
36
{
37
}
38
39
VmbErrorType
CommandFeature::RunCommand
()
40
{
41
if
( NULL ==
m_pFeatureContainer
)
42
{
43
return
VmbErrorDeviceNotOpen
;
44
}
45
46
return
(
VmbErrorType
)
VmbFeatureCommandRun
(
m_pFeatureContainer
->
GetHandle
(),
m_featureInfo
.
name
.c_str() );
47
}
48
49
VmbErrorType
CommandFeature::IsCommandDone
(
bool
&rbIsDone )
const
50
{
51
if
( NULL ==
m_pFeatureContainer
)
52
{
53
return
VmbErrorDeviceNotOpen
;
54
}
55
56
return
(
VmbErrorType
)
VmbFeatureCommandIsDone
(
m_pFeatureContainer
->
GetHandle
(),
m_featureInfo
.
name
.c_str(), &rbIsDone );
57
}
58
59
60
}}
// namespace AVT::VmbAPI
VmbErrorDeviceNotOpen
@ VmbErrorDeviceNotOpen
Definition:
VmbCommonTypes.h:113
AVT::VmbAPI::BaseFeature::m_featureInfo
FeatureInfo m_featureInfo
Definition:
BaseFeature.h:106
AVT
Definition:
AncillaryData.h:35
VmbErrorType
VmbErrorType
Definition:
VmbCommonTypes.h:106
AVT::VmbAPI::FeatureContainer::GetHandle
VmbHandle_t GetHandle() const
Definition:
FeatureContainer.cpp:188
VmbFeatureCommandRun
IMEXPORTC VmbError_t VMB_CALL VmbFeatureCommandRun(const VmbHandle_t handle, const char *name)
AVT::VmbAPI::BaseFeature::FeatureInfo::name
std::string name
Definition:
BaseFeature.h:89
CommandFeature.h
AVT::VmbAPI::BaseFeature
Definition:
BaseFeature.h:39
AVT::VmbAPI::BaseFeature::m_pFeatureContainer
FeatureContainer * m_pFeatureContainer
Definition:
BaseFeature.h:108
AVT::VmbAPI::CommandFeature::CommandFeature
CommandFeature(const VmbFeatureInfo_t *featureInfo, FeatureContainer *pFeatureContainer)
Definition:
CommandFeature.cpp:34
AVT::VmbAPI::FeatureContainer
Definition:
FeatureContainer.h:40
AVT::VmbAPI::CommandFeature::RunCommand
virtual IMEXPORT VmbErrorType RunCommand()
Definition:
CommandFeature.cpp:39
VmbFeatureInfo
Definition:
VimbaC.h:207
VmbFeatureCommandIsDone
IMEXPORTC VmbError_t VMB_CALL VmbFeatureCommandIsDone(const VmbHandle_t handle, const char *name, VmbBool_t *pIsDone)
AVT::VmbAPI::CommandFeature::IsCommandDone
virtual IMEXPORT VmbErrorType IsCommandDone(bool &isDone) const
Definition:
CommandFeature.cpp:49
avt_vimba_camera
Author(s): Allied Vision Technologies, Miquel Massot
autogenerated on Sat Jun 3 2023 02:14:12