YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
return_getLastVelocityCommand.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2006-2021 Istituto Italiano di Tecnologia (IIT)
3 * SPDX-License-Identifier: BSD-3-Clause
4 */
5
6// Autogenerated by Thrift Compiler (0.14.1-yarped)
7//
8// This is an automatically generated file.
9// It could get re-generated if the ALLOW_IDL_GENERATION flag is on.
10
11#ifndef YARP_THRIFT_GENERATOR_STRUCT_RETURN_GETLASTVELOCITYCOMMAND_H
12#define YARP_THRIFT_GENERATOR_STRUCT_RETURN_GETLASTVELOCITYCOMMAND_H
13
14#include <yarp/os/Wire.h>
17
20{
21public:
22 // Fields
24 double x_vel{0.0};
25 double y_vel{0.0};
26 double theta_vel{0.0};
27
28 // Default constructor
30
31 // Constructor with field values
33 const double x_vel,
34 const double y_vel,
35 const double theta_vel);
36
37 // Read structure on a Wire
38 bool read(yarp::os::idl::WireReader& reader) override;
39
40 // Read structure on a Connection
41 bool read(yarp::os::ConnectionReader& connection) override;
42
43 // Write structure on a Wire
44 bool write(const yarp::os::idl::WireWriter& writer) const override;
45
46 // Write structure on a Connection
47 bool write(yarp::os::ConnectionWriter& connection) const override;
48
49 // Convert to a printable string
50 std::string toString() const;
51
52 // If you want to serialize this class without nesting, use this helper
54
55private:
56 // read/write ret field
57 bool read_ret(yarp::os::idl::WireReader& reader);
58 bool write_ret(const yarp::os::idl::WireWriter& writer) const;
59 bool nested_read_ret(yarp::os::idl::WireReader& reader);
60 bool nested_write_ret(const yarp::os::idl::WireWriter& writer) const;
61
62 // read/write x_vel field
63 bool read_x_vel(yarp::os::idl::WireReader& reader);
64 bool write_x_vel(const yarp::os::idl::WireWriter& writer) const;
65 bool nested_read_x_vel(yarp::os::idl::WireReader& reader);
66 bool nested_write_x_vel(const yarp::os::idl::WireWriter& writer) const;
67
68 // read/write y_vel field
69 bool read_y_vel(yarp::os::idl::WireReader& reader);
70 bool write_y_vel(const yarp::os::idl::WireWriter& writer) const;
71 bool nested_read_y_vel(yarp::os::idl::WireReader& reader);
72 bool nested_write_y_vel(const yarp::os::idl::WireWriter& writer) const;
73
74 // read/write theta_vel field
75 bool read_theta_vel(yarp::os::idl::WireReader& reader);
76 bool write_theta_vel(const yarp::os::idl::WireWriter& writer) const;
77 bool nested_read_theta_vel(yarp::os::idl::WireReader& reader);
78 bool nested_write_theta_vel(const yarp::os::idl::WireWriter& writer) const;
79};
80
81#endif // YARP_THRIFT_GENERATOR_STRUCT_RETURN_GETLASTVELOCITYCOMMAND_H
yarp::os::idl::Unwrapped< return_getLastVelocityCommand > unwrapped
bool write(const yarp::os::idl::WireWriter &writer) const override
bool read(yarp::os::idl::WireReader &reader) override
An interface for reading from a network connection.
An interface for writing to a network connection.
A "tamed" Portable, that promises to serialize itself in an IDL-friendly way.
IDL-friendly connection reader.
Definition WireReader.h:27
IDL-friendly connection writer.
Definition WireWriter.h:28