Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
include
VimbaCPP
Include
Mutex.h
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: Mutex.h
10
11
Description: Definition of class AVT::VmbAPI::Mutex.
12
(This include file is for internal use only.)
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
#ifndef AVT_VMBAPI_MUTEX
30
#define AVT_VMBAPI_MUTEX
31
32
#include <
VimbaCPP/Include/VimbaCPPCommon.h
>
33
34
#ifdef _WIN32
35
#include <windows.h>
36
#else
37
#include <pthread.h>
38
#endif
39
40
namespace
AVT
{
41
namespace
VmbAPI {
42
43
class
Mutex
44
{
45
public
:
46
IMEXPORT
explicit
Mutex
(
bool
bInitLock =
false
);
47
IMEXPORT
~Mutex
();
48
49
IMEXPORT
void
Lock
();
50
IMEXPORT
void
Unlock
();
51
52
protected
:
53
#ifdef _WIN32
54
HANDLE m_hMutex;
55
#else
56
pthread_mutex_t
m_Mutex
;
57
#endif
58
59
private
:
60
Mutex&
operator=
(
const
Mutex& );
61
Mutex
(
const
Mutex& );
62
};
63
64
}}
//namespace AVT::VmbAPI
65
66
#endif //AVT_VMBAPI_MUTEX
AVT::VmbAPI::Mutex::operator=
Mutex & operator=(const Mutex &)
Definition:
Mutex.cpp:73
AVT::VmbAPI::Mutex::Unlock
IMEXPORT void Unlock()
Definition:
Mutex.cpp:88
AVT::VmbAPI::Mutex::Lock
IMEXPORT void Lock()
Definition:
Mutex.cpp:79
AVT::VmbAPI::Mutex::Mutex
IMEXPORT Mutex(bool bInitLock=false)
Definition:
Mutex.cpp:37
AVT::VmbAPI::Mutex
Definition:
Mutex.h:43
VimbaCPPCommon.h
AVT
Definition:
AncillaryData.h:35
AVT::VmbAPI::Mutex::~Mutex
IMEXPORT ~Mutex()
Definition:
Mutex.cpp:59
AVT::VmbAPI::Mutex::m_Mutex
pthread_mutex_t m_Mutex
Definition:
Mutex.h:56
avt_vimba_camera
Author(s): Miquel Massot
, Allied Vision Technologies
autogenerated on Mon Jun 10 2019 12:50:39