zmmw

Results 6 issues of zmmw

hi, I want to use invoke_variadic like this : std::vector args; for(int var = 0; var < 3; ++var) { args.push_back(var); } auto ret = meth.invoke_variadic(obj, args); then I found...

I use log4cplus in centos 7.2 , this is init code: ```cpp int init_log4cplus_and_monitor() { try { log4cplus::ConfigureAndWatchThread configureThread(LOG4CPLUS_TEXT("../etc/log4cplus.properties"), 5*1000); _logger = log4cplus::Logger::getInstance(LOG4CPLUS_TEXT("WORKLOG")); } catch(...) { return -1; } return...

question

the code blow : bool callback(const PDU& pdu) { const IP& ip = pdu.rfind_pdu(); const TCP& tcp = pdu.rfind_pdu(); std::cout

Has this project dead?

hi, I want to use windows namepipe by asio, but i can't search an example or detailed guide for it

我想在本地服务启动程序的时候加载插件使用,不需要rpc和http远程调用,根据里面的例子没看出来应该怎么用,是不是还需要一个管理的模块来调用ADD_SERVICE这个函数?