Open Lighting Architecture
0.9.6
Main Page
Modules
Related Pages
Namespaces
Classes
Files
File List
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
include
ola
client
ClientArgs.h
Go to the documentation of this file.
1
/*
2
* This library is free software; you can redistribute it and/or
3
* modify it under the terms of the GNU Lesser General Public
4
* License as published by the Free Software Foundation; either
5
* version 2.1 of the License, or (at your option) any later version.
6
*
7
* This library is distributed in the hope that it will be useful,
8
* but WITHOUT ANY WARRANTY; without even the implied warranty of
9
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10
* Lesser General Public License for more details.
11
*
12
* You should have received a copy of the GNU Lesser General Public
13
* License along with this library; if not, write to the Free Software
14
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
15
*
16
* ClientArgs.h
17
* Types used as arguments to the OLA Client.
18
* Copyright (C) 2013 Simon Newton
19
*/
20
21
#ifndef INCLUDE_OLA_CLIENT_CLIENTARGS_H_
22
#define INCLUDE_OLA_CLIENT_CLIENTARGS_H_
23
24
#include <
ola/client/CallbackTypes.h
>
25
#include <
ola/dmx/SourcePriorities.h
>
26
32
namespace
ola {
33
namespace
client {
34
38
enum
PatchAction
{
39
PATCH
,
40
UNPATCH
,
41
};
42
46
enum
RegisterAction
{
47
REGISTER
,
48
UNREGISTER
,
49
};
50
54
enum
PortDirection
{
55
INPUT_PORT
,
56
OUTPUT_PORT
,
57
};
58
62
enum
DiscoveryType
{
63
DISCOVERY_CACHED
,
64
DISCOVERY_INCREMENTAL
,
65
DISCOVERY_FULL
,
66
};
67
71
struct
SendDMXArgs
{
76
uint8_t
priority
;
80
GeneralSetCallback
*
callback
;
81
85
SendDMXArgs
()
86
:
priority
(ola::dmx::
SOURCE_PRIORITY_DEFAULT
),
87
callback
(NULL) {
88
}
89
93
explicit
SendDMXArgs
(
GeneralSetCallback
*
callback
)
94
:
priority
(ola::dmx::
SOURCE_PRIORITY_DEFAULT
),
95
callback(callback) {
96
}
97
};
98
103
struct
SendRDMArgs
{
107
RDMCallback
*
callback
;
108
112
bool
include_raw_frames
;
113
114
explicit
SendRDMArgs
(
RDMCallback
*
callback
)
115
: callback(callback),
116
include_raw_frames
(false) {
117
}
118
};
119
}
// namespace client
120
}
// namespace ola
121
#endif // INCLUDE_OLA_CLIENT_CLIENTARGS_H_
Generated on Fri Jul 3 2015 15:58:45 for Open Lighting Architecture by
1.8.1.2