Part of a series of examples on the different ways of using ports.
Part of a series of examples on the different ways of using ports. See Port power tutorial.
#include <stdio.h>
while (true) {
printf(
"Got %s\n", in.
toString().c_str());
}
}
A simple collection of objects that can be described and transmitted in a portable way.
void append(const Bottle &alt)
Append the content of the given bottle to the current list.
void clear()
Empties the bottle of any objects it contains.
void addString(const char *str)
Places a string in the bottle, at the end of the list.
std::string toString() const override
Gives a human-readable textual representation of the bottle.
Utilities for manipulating the YARP network, including initialization and shutdown.
A mini-server for network communication.
bool read(PortReader &reader, bool willReply=false) override
Read an object from the port.
bool reply(PortWriter &writer) override
Send an object as a reply to an object read from the port.
bool open(const std::string &name) override
Start port operation, with a specific name, with automatically-chosen network parameters.
An interface to the operating system, including Port based communication.
The main, catch-all namespace for YARP.
int main(int argc, char *argv[])