YARP
Yet Another Robot Platform
SensorMetadata.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_SENSORMETADATA_H
12#define YARP_THRIFT_GENERATOR_STRUCT_SENSORMETADATA_H
13
14#include <yarp/os/Wire.h>
16
19{
20public:
21 // Fields
22 std::string name{};
23 std::string frameName{};
24 std::string additionalMetadata{};
25
26 // Default constructor
27 SensorMetadata() = default;
28
29 // Constructor with field values
30 SensorMetadata(const std::string& name,
31 const std::string& frameName,
32 const std::string& additionalMetadata);
33
34 // Read structure on a Wire
35 bool read(yarp::os::idl::WireReader& reader) override;
36
37 // Read structure on a Connection
38 bool read(yarp::os::ConnectionReader& connection) override;
39
40 // Write structure on a Wire
41 bool write(const yarp::os::idl::WireWriter& writer) const override;
42
43 // Write structure on a Connection
44 bool write(yarp::os::ConnectionWriter& connection) const override;
45
46 // Convert to a printable string
47 std::string toString() const;
48
49 // If you want to serialize this class without nesting, use this helper
51
52private:
53 // read/write name field
54 bool read_name(yarp::os::idl::WireReader& reader);
55 bool write_name(const yarp::os::idl::WireWriter& writer) const;
56 bool nested_read_name(yarp::os::idl::WireReader& reader);
57 bool nested_write_name(const yarp::os::idl::WireWriter& writer) const;
58
59 // read/write frameName field
60 bool read_frameName(yarp::os::idl::WireReader& reader);
61 bool write_frameName(const yarp::os::idl::WireWriter& writer) const;
62 bool nested_read_frameName(yarp::os::idl::WireReader& reader);
63 bool nested_write_frameName(const yarp::os::idl::WireWriter& writer) const;
64
65 // read/write additionalMetadata field
66 bool read_additionalMetadata(yarp::os::idl::WireReader& reader);
67 bool write_additionalMetadata(const yarp::os::idl::WireWriter& writer) const;
68 bool nested_read_additionalMetadata(yarp::os::idl::WireReader& reader);
69 bool nested_write_additionalMetadata(const yarp::os::idl::WireWriter& writer) const;
70};
71
72#endif // YARP_THRIFT_GENERATOR_STRUCT_SENSORMETADATA_H
yarp::os::idl::Unwrapped< SensorMetadata > unwrapped
std::string frameName
bool write(const yarp::os::idl::WireWriter &writer) const override
bool read(yarp::os::idl::WireReader &reader) override
std::string additionalMetadata
SensorMetadata()=default
std::string toString() const
std::string name
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.
Definition: WirePortable.h:21
IDL-friendly connection reader.
Definition: WireReader.h:27
IDL-friendly connection writer.
Definition: WireWriter.h:28