YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
SensorMeasurement.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_SENSORMEASUREMENT_H
12#define YARP_THRIFT_GENERATOR_STRUCT_SENSORMEASUREMENT_H
13
14#include <yarp/dev/api.h>
15
16#include <yarp/os/Wire.h>
18#include <yarp/sig/Vector.h>
19
20namespace yarp::dev {
21
24{
25public:
26 // Fields
27
28 yarp::sig::Vector measurement{};
29 double timestamp{0.0};
30
31 // Default constructor
32 SensorMeasurement() = default;
33
34 // Constructor with field values
35 SensorMeasurement(const yarp::sig::Vector& measurement,
36 const double timestamp);
37
38 // Read structure on a Wire
39 bool read(yarp::os::idl::WireReader& reader) override;
40
41 // Read structure on a Connection
42 bool read(yarp::os::ConnectionReader& connection) override;
43
44 // Write structure on a Wire
45 bool write(const yarp::os::idl::WireWriter& writer) const override;
46
47 // Write structure on a Connection
48 bool write(yarp::os::ConnectionWriter& connection) const override;
49
50 // Convert to a printable string
51 std::string toString() const;
52
53 // If you want to serialize this class without nesting, use this helper
55
56private:
57 // read/write measurement field
58 bool read_measurement(yarp::os::idl::WireReader& reader);
59 bool write_measurement(const yarp::os::idl::WireWriter& writer) const;
60 bool nested_read_measurement(yarp::os::idl::WireReader& reader);
61 bool nested_write_measurement(const yarp::os::idl::WireWriter& writer) const;
62
63 // read/write timestamp field
64 bool read_timestamp(yarp::os::idl::WireReader& reader);
65 bool write_timestamp(const yarp::os::idl::WireWriter& writer) const;
66 bool nested_read_timestamp(yarp::os::idl::WireReader& reader);
67 bool nested_write_timestamp(const yarp::os::idl::WireWriter& writer) const;
68};
69
70} // namespace yarp::dev
71
72#endif // YARP_THRIFT_GENERATOR_STRUCT_SENSORMEASUREMENT_H
std::string toString(const T &value)
convert an arbitrary type to string.
contains the definition of a Vector type
yarp::os::idl::Unwrapped< SensorMeasurement > unwrapped
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
For streams capable of holding different kinds of content, check what they actually have.
#define YARP_dev_API
Definition api.h:18