Session is now bound in the type system. This means that there is now almost no difference between the Session class in C++ and in Python. You can now call loadService from Python and pass Python Session objects to C++.
qi::File
provides a way to open a file in read-only mode on the local file system and share the content of this file with potentially remote services.
We provide algorithms to copy a remote file’s content to make a local copy of it, using the qi::copyToLocal
or qi::prepareCopyToLocal
functions.
Examples for each use case are provided in the documentation.
A complete working example of a service and a service user application
is also provided with qi::File
sources and documentation.