YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
LLM_Message.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_LLM_MESSAGE_H
12#define YARP_THRIFT_GENERATOR_STRUCT_LLM_MESSAGE_H
13
14#include <yarp/dev/api.h>
15
16#include <yarp/os/Wire.h>
18
19namespace yarp::dev {
20
23{
24public:
25 // Fields
29 std::string type{};
33 std::string content{};
37 std::vector<std::string> parameters{};
41 std::vector<std::string> arguments{};
42
43 // Default constructor
44 LLM_Message() = default;
45
46 // Constructor with field values
47 LLM_Message(const std::string& type,
48 const std::string& content,
49 const std::vector<std::string>& parameters,
50 const std::vector<std::string>& arguments);
51
52 // Read structure on a Wire
53 bool read(yarp::os::idl::WireReader& reader) override;
54
55 // Read structure on a Connection
56 bool read(yarp::os::ConnectionReader& connection) override;
57
58 // Write structure on a Wire
59 bool write(const yarp::os::idl::WireWriter& writer) const override;
60
61 // Write structure on a Connection
62 bool write(yarp::os::ConnectionWriter& connection) const override;
63
64 // Convert to a printable string
65 std::string toString() const;
66
67 // If you want to serialize this class without nesting, use this helper
69
70private:
71 // read/write type field
72 bool read_type(yarp::os::idl::WireReader& reader);
73 bool write_type(const yarp::os::idl::WireWriter& writer) const;
74 bool nested_read_type(yarp::os::idl::WireReader& reader);
75 bool nested_write_type(const yarp::os::idl::WireWriter& writer) const;
76
77 // read/write content field
78 bool read_content(yarp::os::idl::WireReader& reader);
79 bool write_content(const yarp::os::idl::WireWriter& writer) const;
80 bool nested_read_content(yarp::os::idl::WireReader& reader);
81 bool nested_write_content(const yarp::os::idl::WireWriter& writer) const;
82
83 // read/write parameters field
84 bool read_parameters(yarp::os::idl::WireReader& reader);
85 bool write_parameters(const yarp::os::idl::WireWriter& writer) const;
86 bool nested_read_parameters(yarp::os::idl::WireReader& reader);
87 bool nested_write_parameters(const yarp::os::idl::WireWriter& writer) const;
88
89 // read/write arguments field
90 bool read_arguments(yarp::os::idl::WireReader& reader);
91 bool write_arguments(const yarp::os::idl::WireWriter& writer) const;
92 bool nested_read_arguments(yarp::os::idl::WireReader& reader);
93 bool nested_write_arguments(const yarp::os::idl::WireWriter& writer) const;
94};
95
96} // namespace yarp::dev
97
98#endif // YARP_THRIFT_GENERATOR_STRUCT_LLM_MESSAGE_H
std::string toString(const T &value)
convert an arbitrary type to string.
yarp::os::idl::Unwrapped< LLM_Message > unwrapped
Definition LLM_Message.h:68
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