Open Lighting Architecture 0.10.9
Loading...
Searching...
No Matches
ClientTypesFactory.h
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 * ClientTypesFactory.h
17 * This provides convenience functions to create data objects from
18 * corresponding protocol buffer objects.
19 * Copyright (C) 2015 Simon Marchi
20 */
21
22#ifndef OLA_CLIENTTYPESFACTORY_H_
23#define OLA_CLIENTTYPESFACTORY_H_
24
26#include <common/protocol/Ola.pb.h>
27
28namespace ola {
29namespace client {
30
35 public:
36 static OlaPlugin PluginFromProtobuf(
37 const ola::proto::PluginInfo &plugin_info);
38 static OlaInputPort InputPortFromProtobuf(
39 const ola::proto::PortInfo &port_info);
40 static OlaOutputPort OutputPortFromProtobufOut(
41 const ola::proto::PortInfo &port_info);
42 static OlaDevice DeviceFromProtobuf(
43 const ola::proto::DeviceInfo &device_info);
44 static OlaUniverse UniverseFromProtobuf(
45 const ola::proto::UniverseInfo &universe_info);
46};
47
48} // namespace client
49} // namespace ola
50#endif // OLA_CLIENTTYPESFACTORY_H_
Types used as return values from the OLA Client.
Creates OlaPlugin types from protocol buffer objects.
Definition ClientTypesFactory.h:34
Represents a device.
Definition ClientTypes.h:219
An input port (receives DMX).
Definition ClientTypes.h:182
An Output Port (sends DMX).
Definition ClientTypes.h:200
Represents a Plugin.
Definition ClientTypes.h:44
Represents a universe.
Definition ClientTypes.h:264
The namespace containing all OLA symbols.
Definition Credentials.cpp:44