OpenZWave Library
1.6.1768
src
platform
Event.h
Go to the documentation of this file.
1
//-----------------------------------------------------------------------------
2
//
3
// Event.h
4
//
5
// Cross-platform manual-reset event
6
//
7
// Copyright (c) 2010 Mal Lansell <mal@lansell.org>
8
// All rights reserved.
9
//
10
// SOFTWARE NOTICE AND LICENSE
11
//
12
// This file is part of OpenZWave.
13
//
14
// OpenZWave is free software: you can redistribute it and/or modify
15
// it under the terms of the GNU Lesser General Public License as published
16
// by the Free Software Foundation, either version 3 of the License,
17
// or (at your option) any later version.
18
//
19
// OpenZWave is distributed in the hope that it will be useful,
20
// but WITHOUT ANY WARRANTY; without even the implied warranty of
21
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22
// GNU Lesser General Public License for more details.
23
//
24
// You should have received a copy of the GNU Lesser General Public License
25
// along with OpenZWave. If not, see <http://www.gnu.org/licenses/>.
26
//
27
//-----------------------------------------------------------------------------
28
#ifndef _Event_H
29
#define _Event_H
30
31
#include "
platform/Wait.h
"
32
33
namespace
OpenZWave
34
{
35
namespace
Internal
36
{
37
namespace
Platform
38
{
39
class
EventImpl;
40
44
class
Event
:
public
Wait
45
{
46
friend
class
SerialControllerImpl
;
47
friend
class
Wait
;
48
49
public
:
54
Event
();
55
60
void
Set
();
61
66
void
Reset
();
67
68
protected
:
72
virtual
bool
IsSignalled
();
73
78
bool
Wait
(
int32
_timeout);
79
84
~Event
();
85
86
private
:
87
Event
(
Event
const
&);
// prevent copy
88
Event
& operator =(
Event
const
&);
// prevent assignment
89
90
EventImpl* m_pImpl;
// Pointer to an object that encapsulates the platform-specific implementation of a event.
91
};
92
}
// namespace Platform
93
}
// namespace Internal
94
}
// namespace OpenZWave
95
96
#endif //_Event_H
97
OpenZWave::Internal::Platform::Event::IsSignalled
virtual bool IsSignalled()
Definition:
Event.cpp:87
OpenZWave
Definition:
Bitfield.cpp:30
Wait.h
OpenZWave::Internal::Platform::Wait
Platform-independent definition of Wait objects.
Definition:
Wait.h:46
OpenZWave::Internal::Platform::Event::Set
void Set()
Definition:
Event.cpp:68
OpenZWave::Internal::Platform::Event
Platform-independent definition of event objects.
Definition:
Event.h:44
int32
signed int int32
Definition:
Defs.h:90
OpenZWave::Internal::Platform::Event::Event
Event()
Definition:
Event.cpp:50
OpenZWave::Internal::Platform::Event::SerialControllerImpl
friend class SerialControllerImpl
Definition:
Event.h:46
OpenZWave::Internal::Platform::Event::~Event
~Event()
Definition:
Event.cpp:59
OpenZWave::Internal::Platform::Event::Reset
void Reset()
Definition:
Event.cpp:78
OpenZWave::Internal::Platform::Wait::Wait
Wait()
Definition:
Wait.cpp:55
Generated on Tue Jan 19 2021 04:21:09 for OpenZWave Library by
1.8.15