Search found 2 matches

by kris24076
Wed Mar 30, 2016 3:14 pm
Forum: Support - RCF
Topic: Returning dynamic RCFClients
Replies: 3
Views: 7067

Re: Returning dynamic RCFClients

Here is an example of what I'm trying to accomplish but can't seem to get working: #include <iostream> #include "RCF/RCF.hpp" #include "RCF/ClientStub.hpp" #include "idl.h" class GoodbyeWorldImpl { public: void Print(const std::string &s) { std::cout << "I_GoodbyeWorld service: " << s << std::endl; ...
by kris24076
Sat Mar 26, 2016 6:02 am
Forum: Support - RCF
Topic: Returning dynamic RCFClients
Replies: 3
Views: 7067

Returning dynamic RCFClients

Is there a way to return an RCFClient from an RCFClient member function?

I'm looking for something that kind of looks like the following example: http://www.cppremote.com/example5.html