YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
return_transcribe.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_TRANSCRIBE_H
12#define YARP_THRIFT_GENERATOR_STRUCT_RETURN_TRANSCRIBE_H
13
14#include <yarp/os/Wire.h>
17
20{
21public:
22 // Fields
24 std::string transcription{};
25 double score{0.0};
26
27 // Default constructor
28 return_transcribe() = default;
29
30 // Constructor with field values
32 const std::string& transcription,
33 const double score);
34
35 // Read structure on a Wire
36 bool read(yarp::os::idl::WireReader& reader) override;
37
38 // Read structure on a Connection
39 bool read(yarp::os::ConnectionReader& connection) override;
40
41 // Write structure on a Wire
42 bool write(const yarp::os::idl::WireWriter& writer) const override;
43
44 // Write structure on a Connection
45 bool write(yarp::os::ConnectionWriter& connection) const override;
46
47 // Convert to a printable string
48 std::string toString() const;
49
50 // If you want to serialize this class without nesting, use this helper
52
53private:
54 // read/write ret field
55 bool read_ret(yarp::os::idl::WireReader& reader);
56 bool write_ret(const yarp::os::idl::WireWriter& writer) const;
57 bool nested_read_ret(yarp::os::idl::WireReader& reader);
58 bool nested_write_ret(const yarp::os::idl::WireWriter& writer) const;
59
60 // read/write transcription field
61 bool read_transcription(yarp::os::idl::WireReader& reader);
62 bool write_transcription(const yarp::os::idl::WireWriter& writer) const;
63 bool nested_read_transcription(yarp::os::idl::WireReader& reader);
64 bool nested_write_transcription(const yarp::os::idl::WireWriter& writer) const;
65
66 // read/write score field
67 bool read_score(yarp::os::idl::WireReader& reader);
68 bool write_score(const yarp::os::idl::WireWriter& writer) const;
69 bool nested_read_score(yarp::os::idl::WireReader& reader);
70 bool nested_write_score(const yarp::os::idl::WireWriter& writer) const;
71};
72
73#endif // YARP_THRIFT_GENERATOR_STRUCT_RETURN_TRANSCRIBE_H
bool read(yarp::os::idl::WireReader &reader) override
std::string transcription
yarp::dev::ReturnValue ret
return_transcribe()=default
std::string toString() const
bool write(const yarp::os::idl::WireWriter &writer) const override
yarp::os::idl::Unwrapped< return_transcribe > 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