YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
return_getLanguage.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_GETLANGUAGE_H
12#define YARP_THRIFT_GENERATOR_STRUCT_RETURN_GETLANGUAGE_H
13
14#include <yarp/os/Wire.h>
16
19{
20public:
21 // Fields
22 bool result{false};
23 std::string language{};
24
25 // Default constructor
26 return_getLanguage() = default;
27
28 // Constructor with field values
29 return_getLanguage(const bool result,
30 const std::string& language);
31
32 // Read structure on a Wire
33 bool read(yarp::os::idl::WireReader& reader) override;
34
35 // Read structure on a Connection
36 bool read(yarp::os::ConnectionReader& connection) override;
37
38 // Write structure on a Wire
39 bool write(const yarp::os::idl::WireWriter& writer) const override;
40
41 // Write structure on a Connection
42 bool write(yarp::os::ConnectionWriter& connection) const override;
43
44 // Convert to a printable string
45 std::string toString() const;
46
47 // If you want to serialize this class without nesting, use this helper
49
50private:
51 // read/write result field
52 bool read_result(yarp::os::idl::WireReader& reader);
53 bool write_result(const yarp::os::idl::WireWriter& writer) const;
54 bool nested_read_result(yarp::os::idl::WireReader& reader);
55 bool nested_write_result(const yarp::os::idl::WireWriter& writer) const;
56
57 // read/write language field
58 bool read_language(yarp::os::idl::WireReader& reader);
59 bool write_language(const yarp::os::idl::WireWriter& writer) const;
60 bool nested_read_language(yarp::os::idl::WireReader& reader);
61 bool nested_write_language(const yarp::os::idl::WireWriter& writer) const;
62};
63
64#endif // YARP_THRIFT_GENERATOR_STRUCT_RETURN_GETLANGUAGE_H
bool write(const yarp::os::idl::WireWriter &writer) const override
bool read(yarp::os::idl::WireReader &reader) override
std::string toString() const
return_getLanguage()=default
yarp::os::idl::Unwrapped< return_getLanguage > 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