ApplicationData.cpp
Go to the documentation of this file.
1 // this is for emacs file handling -*- mode: c++; indent-tabs-mode: nil -*-
2 
3 // -- BEGIN LICENSE BLOCK ----------------------------------------------
4 
24 // -- END LICENSE BLOCK ------------------------------------------------
25 
26 //----------------------------------------------------------------------
33 //----------------------------------------------------------------------
34 
36 
37 namespace sick {
38 namespace datastructure {
39 
41  : m_is_empty(false)
42 {
43 }
44 
46 {
47  return m_inputs;
48 }
49 
51 {
52  m_inputs = inputs;
53 }
54 
56 {
57  return m_outputs;
58 }
59 
61 {
62  m_outputs = outputs;
63 }
64 
66 {
67  return m_is_empty;
68 }
69 
70 void ApplicationData::setIsEmpty(bool is_empty)
71 {
72  m_is_empty = is_empty;
73 }
74 
75 
76 } // namespace datastructure
77 } // namespace sick
void setIsEmpty(bool is_empty)
Sets if application data is empty.
The applications inputs from a udp data packet.
bool isEmpty() const
Check if application data is empty.
void setInputs(const ApplicationInputs &inputs)
Sets the application input.
The application outputs from a udp data packet.
ApplicationInputs getInputs() const
Gets the application input.
void setOutputs(const ApplicationOutputs &outputs)
Sets the application output.
ApplicationData()
Constructor of the application data.
ApplicationOutputs getOutputs() const
Gets the application output.


sick_safetyscanners
Author(s): Lennart Puck
autogenerated on Fri Apr 2 2021 02:45:41