-
Do you have the development packages for GTK installed? It looks as if the correct include files are not available (or are not in the search path).
2009-09-30 11:15:12 UTC in IP and Ethernet testing Tool
-
Hmm... my C++ skills are still more or less at the novice level, but I think what pminervini wants is something like:
class myBigFatLotsOfDataAndCodeClass: public iqxmlrpc::Method {
[...]
void executeA(const Param_list& params, Value& result);
void executeB(const Param_list& params, Value& result);
void executeC(const Param_list& params, Value& result);.
2009-07-13 08:51:38 UTC in Libiqxmlrpc
-
Hello Anton.
Thanks for help, it did work. Don't worry about response times, yours are great.... and do enjoy your holidays. Please see the attached code snippets when you get back ;):
====================================================
// ===============================================================
class classMyHttpsClient: public iqxmlrpc::Https_client_connection {
public:
2009-07-10 13:10:49 UTC in Libiqxmlrpc
-
I'm using them, please see the attached code-snipets. I hope the line-wraps won't break my code style ;).
class Echo {
public:
void static echo(iqxmlrpc::Method *method, const iqxmlrpc::Param_list& params, iqxmlrpc::Value& retval) {
if (params.empty()) {
std::cerr << "0 arguments received" << std::endl;.
2009-07-09 14:45:21 UTC in Libiqxmlrpc