YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
ISpeechSynthesizerMsgs.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_SERVICE_ISPEECHSYNTHESIZERMSGS_H
12#define YARP_THRIFT_GENERATOR_SERVICE_ISPEECHSYNTHESIZERMSGS_H
13
14#include <yarp/os/Wire.h>
17#include <return_get_language.h>
18#include <return_get_pitch.h>
19#include <return_get_speed.h>
20#include <return_get_voice.h>
21#include <return_set_language.h>
22#include <return_set_pitch.h>
23#include <return_set_speed.h>
24#include <return_set_voice.h>
25#include <return_synthesize.h>
26
28 public yarp::os::Wire
29{
30public:
31 //ProtocolVersion
34 virtual bool checkProtocolVersion();
35
36 // Constructor
38
39 //Service methods
40 virtual return_set_language set_language(const std::string& language);
41
43
44 virtual return_set_voice set_voice(const std::string& language);
45
47
48 virtual return_set_speed set_speed(const double speed);
49
51
52 virtual return_set_pitch set_pitch(const double pitch);
53
55
56 virtual return_synthesize synthesize(const std::string& text);
57
58 // help method
59 virtual std::vector<std::string> help(const std::string& functionName = "--all");
60
61 // read from ConnectionReader
62 bool read(yarp::os::ConnectionReader& connection) override;
63};
64
65#endif // YARP_THRIFT_GENERATOR_SERVICE_ISPEECHSYNTHESIZERMSGS_H
virtual return_set_speed set_speed(const double speed)
virtual return_get_speed get_speed()
virtual return_set_pitch set_pitch(const double pitch)
virtual return_set_voice set_voice(const std::string &language)
virtual return_synthesize synthesize(const std::string &text)
virtual yarp::os::ApplicationNetworkProtocolVersion getLocalProtocolVersion()
virtual std::vector< std::string > help(const std::string &functionName="--all")
virtual return_get_pitch get_pitch()
virtual return_get_language get_language()
bool read(yarp::os::ConnectionReader &connection) override
Read this object from a network connection.
virtual return_get_voice get_voice()
virtual return_set_language set_language(const std::string &language)
virtual yarp::os::ApplicationNetworkProtocolVersion getRemoteProtocolVersion()
An interface for reading from a network connection.
Base class for IDL client/server.
Definition Wire.h:18