Open Lighting Architecture  0.9.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
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 
26 
32 namespace ola {
33 namespace client {
34 
41 };
42 
49 };
50 
57 };
58 
66 };
67 
71 struct SendDMXArgs {
76  uint8_t priority;
81 
86  : priority(ola::dmx::SOURCE_PRIORITY_DEFAULT),
87  callback(NULL) {
88  }
89 
94  : priority(ola::dmx::SOURCE_PRIORITY_DEFAULT),
95  callback(callback) {
96  }
97 };
98 
103 struct SendRDMArgs {
108 
109  explicit SendRDMArgs(RDMCallback *callback) : callback(callback) {}
110 };
111 } // namespace client
112 } // namespace ola
113 #endif // INCLUDE_OLA_CLIENT_CLIENTARGS_H_